Uses of Class
com.taggercat.security.LoginInfo

Packages that use LoginInfo
com.taggercat Classes and properties used for configuration and message reporting. 
com.taggercat.model The model layer of Tagger Cat's web framework 
com.taggercat.security Tagger Cat's authentication and authorization 
 

Uses of LoginInfo in com.taggercat
 

Methods in com.taggercat with parameters of type LoginInfo
static PermissonContext PermissonContext.init(org.hibernate.SessionFactory sessionFactory, PermissionReader permissionReader, LoginInfo loginInfo)
           
 

Uses of LoginInfo in com.taggercat.model
 

Methods in com.taggercat.model that return LoginInfo
 LoginInfo Model.getLoginInfo()
           
 

Methods in com.taggercat.model with parameters of type LoginInfo
 void Model.setLoginInfo(LoginInfo loginInfo)
           
 

Constructors in com.taggercat.model with parameters of type LoginInfo
Model(LoginInfo loginInfo)
          Creates a model instance for the current user.
 

Uses of LoginInfo in com.taggercat.security
 

Methods in com.taggercat.security with parameters of type LoginInfo
 void SecurityProvider.authenticate(LoginInfo loginInfo, org.hibernate.Session session)
          Authenticates a user by looking up their user ID and password in some directory.
 void DefaultSecurityProvider.authenticate(LoginInfo loginInfo, org.hibernate.Session session)
          Authenticates a user by looking up their user ID and password in the application's SQL user table.
 void SecurityProvider.setGroupMembershipNames(LoginInfo loginInfo, java.lang.String metadataCatalog, org.hibernate.Session session)
          Set a comma separated string of the group names this user belongs to.
 void DefaultSecurityProvider.setGroupMembershipNames(LoginInfo loginInfo, java.lang.String metadataCatalog, org.hibernate.Session session)