Uses of Interface
gate.security.User

Packages that use User
gate.persist   
gate.security   
 

Uses of User in gate.persist
 

Methods in gate.persist that return User
protected  User JDBCDataStore.getLockingUser(LanguageResource lr)
          Releases the exlusive lock on a resource from the persistent store.
protected  User JDBCDataStore.getLockingUser(Long lrID)
          Releases the exlusive lock on a resource from the persistent store.
 

Uses of User in gate.security
 

Classes in gate.security that implement User
 class UserImpl
           
 

Fields in gate.security declared as User
protected  User SecurityInfo.usr
           
private  User SessionImpl.user
          User associated with the session
 

Methods in gate.security that return User
 User SecurityInfo.getUser()
           
 User SessionImpl.getUser()
          returns the user associated with the session
 User Session.getUser()
          returns the user associated with the session
 User AccessController.findUser(String name)
          ---
 User AccessController.findUser(Long id)
          ---
 User AccessController.createUser(String name, String passwd, Session s)
          ---
 User AccessControllerImpl.findUser(String name)
          ---
 User AccessControllerImpl.findUser(Long id)
          ---
 User AccessControllerImpl.createUser(String name, String passwd, Session s)
          ---
 

Methods in gate.security with parameters of type User
 void Group.addUser(User usr, Session s)
          ---
 void Group.removeUser(User usr, Session s)
          ---
 void GroupImpl.addUser(User usr, Session s)
          ---
 void GroupImpl.removeUser(User usr, Session s)
          ---
 void AccessController.deleteUser(User usr, Session s)
          ---
 void AccessControllerImpl.deleteUser(User usr, Session s)
          ---
private  boolean AccessControllerImpl.canDeleteUser(User usr)
           
 

Constructors in gate.security with parameters of type User
SecurityInfo(int accessMode, User usr, Group grp)
           
SessionImpl(Long id, User usr, Group grp, int timeout, boolean isPrivileged)
          ---