Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

Antti Väyrynen / Moya

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • moya
  • ..
  • beans
  • SessionHandlerBeanLocal.java
  • Tuomas Riihimäki's avatar
    Changed login and logout tags to jaas. Added new user creation hash function. Cl… · f31c3c31
    …eaned Session handler to JAAS type of authentication
    Tuomas Riihimäki committed Apr 18, 2010
    f31c3c31 Browse Files
SessionHandlerBeanLocal.java 313 Bytes
BlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
package fi.insomnia.bortal.beans;
import javax.ejb.Local;

import fi.insomnia.bortal.model.User;

@Local 
public interface SessionHandlerBeanLocal {


    boolean hasPermission(String target, User user, RolePermission permission);

  
    User getDefaultUser();

    void testing();

    User getCurrentUser();
}