Uses of Class
org.apache.turbine.util.security.UnknownEntityException

Packages that use UnknownEntityException
org.apache.turbine.services.security   
org.apache.turbine.services.security.db   
org.apache.turbine.services.security.ldap   
org.apache.turbine.services.security.passive   
 

Uses of UnknownEntityException in org.apache.turbine.services.security
 

Methods in org.apache.turbine.services.security that throw UnknownEntityException
static java.lang.Class TurbineSecurity.getUserClass()
          Return a Class object representing the system's chosen implementation of of User interface.
static User TurbineSecurity.getUserInstance()
          Construct a blank User object.
static User TurbineSecurity.getAuthenticatedUser(java.lang.String username, java.lang.String password)
          Authenticates an user, and constructs an User object to represent him/her.
static User TurbineSecurity.getUser(java.lang.String username)
          Constructs an User object to represent a registered user of the application.
static User TurbineSecurity.getAnonymousUser()
          Constructs an User object to represent an anonymous user of the application.
static void TurbineSecurity.saveUser(User user)
          Saves User's data in the permanent storage.
static void TurbineSecurity.changePassword(User user, java.lang.String oldPassword, java.lang.String newPassword)
          Change the password for an User.
static void TurbineSecurity.forcePassword(User user, java.lang.String password)
          Forcibly sets new password for an User.
static AccessControlList TurbineSecurity.getACL(User user)
          Constructs an AccessControlList for a specific user.
static void TurbineSecurity.grant(User user, Group group, Role role)
          Grant an User a Role in a Group.
static void TurbineSecurity.revoke(User user, Group group, Role role)
          Revoke a Role in a Group from an User.
static void TurbineSecurity.revokeAll(User user)
          Revokes all roles from an User.
static void TurbineSecurity.grant(Role role, Permission permission)
          Grants a Role a Permission
static void TurbineSecurity.revoke(Role role, Permission permission)
          Revokes a Permission from a Role.
static void TurbineSecurity.revokeAll(Role role)
          Revokes all permissions from a Role.
static void TurbineSecurity.removeUser(User user)
          Removes an user account from the system.
static Group TurbineSecurity.getGroup(java.lang.String groupName)
          Retrieves a named Group.
static Role TurbineSecurity.getRole(java.lang.String roleName)
          Retrieves a named Role.
static Permission TurbineSecurity.getPermission(java.lang.String permissionName)
          Retrieves a named Permission.
static PermissionSet TurbineSecurity.getPermissions(Role role)
          Retrieves all permissions associated with a role.
static void TurbineSecurity.saveGroup(Group group)
          Stores Group's attributes.
static void TurbineSecurity.saveRole(Role role)
          Stores Role's attributes.
static void TurbineSecurity.savePermission(Permission permission)
          Stores Permission's attributes.
static void TurbineSecurity.removeGroup(Group group)
          Removes a Group from the system.
static void TurbineSecurity.removeRole(Role role)
          Removes a Role from the system.
static void TurbineSecurity.removePermission(Permission permission)
          Removes a Permission from the system.
static void TurbineSecurity.renameGroup(Group group, java.lang.String name)
          Renames an existing Group.
static void TurbineSecurity.renameRole(Role role, java.lang.String name)
          Renames an existing Role.
static void TurbineSecurity.renamePermission(Permission permission, java.lang.String name)
          Renames an existing Permission.
 java.lang.Class SecurityService.getUserClass()
          Returns the Class object for the implementation of User interface used by the system.
 User SecurityService.getUserInstance()
          Construct a blank User object.
 User SecurityService.getAuthenticatedUser(java.lang.String username, java.lang.String password)
          Authenticates an user, and constructs an User object to represent him/her.
 User SecurityService.getUser(java.lang.String username)
          Constructs an User object to represent a registered user of the application.
 User SecurityService.getAnonymousUser()
          Constructs an User object to represent an anonymous user of the application.
 void SecurityService.saveUser(User user)
          Saves User's data in the permanent storage.
 void SecurityService.removeUser(User user)
          Removes an user account from the system.
 void SecurityService.changePassword(User user, java.lang.String oldPassword, java.lang.String newPassword)
          Change the password for an User.
 void SecurityService.forcePassword(User user, java.lang.String password)
          Forcibly sets new password for an User.
 AccessControlList SecurityService.getACL(User user)
          Constructs an AccessControlList for a specific user.
 PermissionSet SecurityService.getPermissions(Role role)
          Retrieves all permissions associated with a role.
 void SecurityService.grant(User user, Group group, Role role)
          Grant an User a Role in a Group.
 void SecurityService.revoke(User user, Group group, Role role)
          Revoke a Role in a Group from an User.
 void SecurityService.revokeAll(User user)
          Revokes all roles from an User.
 void SecurityService.grant(Role role, Permission permission)
          Grants a Role a Permission
 void SecurityService.revoke(Role role, Permission permission)
          Revokes a Permission from a Role.
 void SecurityService.revokeAll(Role role)
          Revokes all permissions from a Role.
 Group SecurityService.getGroup(java.lang.String name)
          Retrieve a Group object with specified name.
 Role SecurityService.getRole(java.lang.String name)
          Retrieve a Role object with specified name.
 Permission SecurityService.getPermission(java.lang.String name)
          Retrieve a Permission object with specified name.
 void SecurityService.saveGroup(Group group)
          Stores Group's attributes.
 void SecurityService.saveRole(Role role)
          Stores Role's attributes.
 void SecurityService.savePermission(Permission permission)
          Stores Permission's attributes.
 void SecurityService.removeGroup(Group group)
          Removes a Group from the system.
 void SecurityService.removeRole(Role role)
          Removes a Role from the system.
 void SecurityService.removePermission(Permission permission)
          Removes a Permission from the system.
 void SecurityService.renameGroup(Group group, java.lang.String name)
          Renames an existing Group.
 void SecurityService.renameRole(Role role, java.lang.String name)
          Renames an existing Role.
 void SecurityService.renamePermission(Permission permission, java.lang.String name)
          Renames an existing Permission.
 java.lang.Class BaseSecurityService.getUserClass()
          Return a Class object representing the system's chosen implementation of of User interface.
 User BaseSecurityService.getUserInstance()
          Construct a blank User object.
 User BaseSecurityService.getAuthenticatedUser(java.lang.String username, java.lang.String password)
          Authenticates an user, and constructs an User object to represent him/her.
 User BaseSecurityService.getUser(java.lang.String username)
          Constructs an User object to represent a registered user of the application.
 User BaseSecurityService.getAnonymousUser()
          Constructs an User object to represent an anonymous user of the application.
 void BaseSecurityService.saveUser(User user)
          Saves User's data in the permanent storage.
 void BaseSecurityService.removeUser(User user)
          Removes an user account from the system.
 void BaseSecurityService.changePassword(User user, java.lang.String oldPassword, java.lang.String newPassword)
          Change the password for an User.
 void BaseSecurityService.forcePassword(User user, java.lang.String password)
          Forcibly sets new password for an User.
 Group BaseSecurityService.getGroup(java.lang.String name)
          Retrieve a Group object with specified name.
 Role BaseSecurityService.getRole(java.lang.String name)
          Retrieve a Role object with specified name.
 Permission BaseSecurityService.getPermission(java.lang.String name)
          Retrieve a Permission object with specified name.
 User UserManager.retrieve(java.lang.String username)
          Retrieve a user from persistent storage using username as the key.
 User UserManager.retrieve(java.lang.String username, java.lang.String password)
          Retrieve a user from persistent storage using username as the key, and authenticate the user.
 void UserManager.store(User user)
          Save an User object to persistent storage.
 void UserManager.authenticate(User user, java.lang.String password)
          Authenticate an User with the specified password.
 void UserManager.removeAccount(User user)
          Removes an user account from the system.
 void UserManager.changePassword(User user, java.lang.String oldPassword, java.lang.String newPassword)
          Change the password for an User.
 void UserManager.forcePassword(User user, java.lang.String password)
          Forcibly sets new password for an User.
 

Uses of UnknownEntityException in org.apache.turbine.services.security.db
 

Methods in org.apache.turbine.services.security.db that throw UnknownEntityException
 User DBUserManager.retrieve(java.lang.String username)
          Retrieve a user from persistent storage using username as the key.
 User DBUserManager.retrieve(java.lang.String username, java.lang.String password)
          Retrieve a user from persistent storage using username as the key, and authenticate the user.
 void DBUserManager.store(User user)
          Save an User object to persistent storage.
 void DBUserManager.authenticate(User user, java.lang.String password)
          Authenticate an User with the specified password.
 void DBUserManager.changePassword(User user, java.lang.String oldPassword, java.lang.String newPassword)
          Change the password for an User.
 void DBUserManager.forcePassword(User user, java.lang.String password)
          Forcibly sets new password for an User.
 void DBUserManager.removeAccount(User user)
          Removes an user account from the system.
 AccessControlList DBSecurityService.getACL(User user)
          Constructs an AccessControlList for a specific user.
 void DBSecurityService.grant(User user, Group group, Role role)
          Grant an User a Role in a Group.
 void DBSecurityService.revoke(User user, Group group, Role role)
          Revoke a Role in a Group from an User.
 void DBSecurityService.revokeAll(User user)
          Revokes all roles from an User.
 void DBSecurityService.grant(Role role, Permission permission)
          Grants a Role a Permission
 void DBSecurityService.revoke(Role role, Permission permission)
          Revokes a Permission from a Role.
 void DBSecurityService.revokeAll(Role role)
          Revokes all permissions from a Role.
 PermissionSet DBSecurityService.getPermissions(Role role)
          Retrieves all permissions associated with a role.
 void DBSecurityService.saveGroup(Group group)
          Stores Group's attributes.
 void DBSecurityService.saveRole(Role role)
          Stores Role's attributes.
 void DBSecurityService.savePermission(Permission permission)
          Stores Permission's attributes.
 void DBSecurityService.removeGroup(Group group)
          Removes a Group from the system.
 void DBSecurityService.removeRole(Role role)
          Removes a Role from the system.
 void DBSecurityService.removePermission(Permission permission)
          Removes a Permission from the system.
 void DBSecurityService.renameGroup(Group group, java.lang.String name)
          Renames an existing Group.
 void DBSecurityService.renameRole(Role role, java.lang.String name)
          Renames an existing Role.
 void DBSecurityService.renamePermission(Permission permission, java.lang.String name)
          Renames an existing Permission.
 java.lang.Class DBSecurityService.getUserPeerClass()
          Returns the Class object for the implementation of UserPeer interface used by the system (defined in TR.properties)
 UserPeer DBSecurityService.getUserPeerInstance()
          Construct a UserPeer object.
 

Uses of UnknownEntityException in org.apache.turbine.services.security.ldap
 

Methods in org.apache.turbine.services.security.ldap that throw UnknownEntityException
 User LDAPUserManager.retrieve(java.lang.String username)
          Retrieve a user from persistent storage using username as the key.
 User LDAPUserManager.retrieve(java.lang.String username, java.lang.String password)
          Retrieve a user from persistent storage using username as the key, and authenticate the user.
 void LDAPUserManager.store(User user)
          This method is not yet implemented Save a User object to persistent storage.
 void LDAPUserManager.authenticate(User user, java.lang.String password)
          Authenticate a User with the specified password.
 void LDAPUserManager.changePassword(User user, java.lang.String oldPassword, java.lang.String newPassword)
          This method is not yet implemented Change the password for an User.
 void LDAPUserManager.forcePassword(User user, java.lang.String password)
          This method is not yet implemented Forcibly sets new password for an User.
 void LDAPUserManager.removeAccount(User user)
          This method is not yet implemented Removes an user account from the system.
 javax.naming.directory.DirContext LDAPUserManager.bind(java.lang.String username, java.lang.String password)
          Creats an initial context.
 AccessControlList LDAPSecurityService.getACL(User user)
          Constructs an AccessControlList for a specific user.
 void LDAPSecurityService.grant(User user, Group group, Role role)
          Grant an User a Role in a Group.
 void LDAPSecurityService.revoke(User user, Group group, Role role)
          Revoke a Role in a Group from an User.
 void LDAPSecurityService.grant(Role role, Permission permission)
          Grants a Role a Permission
 void LDAPSecurityService.revoke(Role role, Permission permission)
          Revokes a Permission from a Role.
 PermissionSet LDAPSecurityService.getPermissions(Role role)
          Retrieves all permissions associated with a role.
 void LDAPSecurityService.saveGroup(Group group)
          Stores Group's attributes.
 void LDAPSecurityService.saveRole(Role role)
          Stores Role's attributes.
 void LDAPSecurityService.savePermission(Permission permission)
          Stores Permission's attributes.
 void LDAPSecurityService.removeGroup(Group group)
          Removes a Group from the system.
 void LDAPSecurityService.removeRole(Role role)
          Removes a Role from the system.
 void LDAPSecurityService.removePermission(Permission permission)
          Removes a Permission from the system.
 void LDAPSecurityService.renameGroup(Group group, java.lang.String name)
          Renames an existing Group.
 void LDAPSecurityService.renameRole(Role role, java.lang.String name)
          Renames an existing Role.
 void LDAPSecurityService.renamePermission(Permission permission, java.lang.String name)
          Renames an existing Permission.
 

Uses of UnknownEntityException in org.apache.turbine.services.security.passive
 

Methods in org.apache.turbine.services.security.passive that throw UnknownEntityException
 User PassiveUserManager.retrieve(java.lang.String username)
          Retrieve a user from persistent storage using username as the key.
 User PassiveUserManager.retrieve(java.lang.String username, java.lang.String password)
          Retrieve a user from persistent storage using username as the key, and authenticate the user.
 void PassiveUserManager.store(User user)
          Save an User object to persistent storage.
 void PassiveUserManager.authenticate(User user, java.lang.String password)
          Authenticate an User with the specified password.
 void PassiveUserManager.removeAccount(User user)
          Removes an user account from the system.
 void PassiveUserManager.changePassword(User user, java.lang.String oldPassword, java.lang.String newPassword)
          Change the password for an User.
 void PassiveUserManager.forcePassword(User user, java.lang.String password)
          Forcibly sets new password for an User.
 



Copyright © 2000-2002 Apache Software Foundation. All Rights Reserved.