Uses of Class
org.apache.jetspeed.security.SecurityException

Packages that use SecurityException
org.apache.jetspeed.security Jetspeed security service interfaces. 
 

Uses of SecurityException in org.apache.jetspeed.security
 

Subclasses of SecurityException in org.apache.jetspeed.security
 class InvalidNewPasswordException
          Exception thrown when supplied new password is invalid.
 class InvalidPasswordException
          Exception thrown when supplied password is invalid.
 class PasswordAlreadyUsedException
          Exception thrown when supplied password has been used before.
 

Methods in org.apache.jetspeed.security that throw SecurityException
 void RoleManager.addRole(String roleFullPathName)
          Add a new role.
 void RoleManager.removeRole(String roleFullPathName)
          Remove a given role and all the children of that role.
 Role RoleManager.getRole(String roleFullPathName)
          Get a role Role for a given role full path name.
 Collection RoleManager.getRolesForUser(String username)
          A collection of Role for all the roles associated to a specific user.
 Collection RoleManager.getRolesInGroup(String groupFullPathName)
          A collection of Role for all the roles associated to a specific group.
 void RoleManager.addRoleToUser(String username, String roleFullPathName)
          Add a role to a user.
 void RoleManager.removeRoleFromUser(String username, String roleFullPathName)
          Remove a user from a role.
 boolean RoleManager.isUserInRole(String username, String roleFullPathName)
          Whether or not a user is in a role.
 void RoleManager.addRoleToGroup(String roleFullPathName, String groupFullPathName)
          Add a role to a group.
 void RoleManager.removeRoleFromGroup(String roleFullPathName, String groupFullPathName)
          Remove a role from a group.
 boolean RoleManager.isGroupInRole(String groupFullPathName, String roleFullPathName)
          Whether or not a role is in a group.
 Iterator RoleManager.getRoles(String filter)
          Get all roles available from all role handlers
 void RoleManager.setRoleEnabled(String roleFullPathName, boolean enabled)
          Enable or disable a role.
 void UserManager.addUser(String username, String password)
           Add a new user provided a username and password.
 void UserManager.addUser(String username, String password, String atnProviderName)
           Add a new user provided a username and password in the specified authentication provider store.
 void UserManager.removeUser(String username)
           Remove a user.
 User UserManager.getUser(String username)
           Get a Userfor a given username.
 Iterator UserManager.getUsers(String filter)
           An iterator of Userfinding users matching the corresponding filter criteria.
 Collection UserManager.getUsersInRole(String roleFullPathName)
           A collection of Userfor all the users in a specific role.
 Collection UserManager.getUsersInGroup(String groupFullPathName)
          A collection of User for a specific group.
 void UserManager.setPassword(String username, String oldPassword, String newPassword)
           Set the user password.
 void UserManager.setPasswordUpdateRequired(String userName, boolean updateRequired)
           Set the update required state of the user password credential.
 void UserManager.setPasswordEnabled(String userName, boolean enabled)
           Set the enabled state of the user password credential.
 void UserManager.setUserEnabled(String userName, boolean enabled)
          Enable or disable a user.
 void UserManager.setPasswordExpiration(String userName, Date expirationDate)
           Set the expiration date and the expired flag of the password credential.
 void PermissionManager.addPermission(Permission permission)
           Adds a permission definition.
 void PermissionManager.removePermission(Permission permission)
           Remove all instances of a given permission.
 void PermissionManager.removePermissions(Principal principal)
           Remove all permissions for a given principal.
 void PermissionManager.grantPermission(Principal principal, Permission permission)
           Grant a Permissionto a given Principal.
 void PermissionManager.revokePermission(Principal principal, Permission permission)
           Revoke a Permissionfrom a given Principal.
 void GroupManager.addGroup(String groupFullPathName)
           Add a new group.
 void GroupManager.removeGroup(String groupFullPathName)
           Remove a group.
 Group GroupManager.getGroup(String groupFullPathName)
           Get a group Groupfor a given group full path name.
 Collection GroupManager.getGroupsForUser(String username)
           A collection of Groupfor all the groups associated to a specific user.
 Collection GroupManager.getGroupsInRole(String roleFullPathName)
           A collection of Groupfor all the groups in a specific role.
 void GroupManager.addUserToGroup(String username, String groupFullPathName)
           Add a user to a group.
 void GroupManager.removeUserFromGroup(String username, String groupFullPathName)
           Remove a user from a group.
 boolean GroupManager.isUserInGroup(String username, String groupFullPathName)
           Whether or not a user is in a group.
 Iterator GroupManager.getGroups(String filter)
          Get all groups available from all group handlers
 void GroupManager.setGroupEnabled(String groupFullPathName, boolean enabled)
          Enable or disable a group.
 



Copyright © 1999-2005 Apache Software Foundation. All Rights Reserved.