BEA Systems, Inc.

BEA WebLogic Server 9.1 API Reference


Uses of Class
weblogic.management.utils.InvalidParameterException

Packages that use InvalidParameterException
weblogic.management.security Provides interfaces and classes for the configuration, control and monitoring of security providers in a WebLogic security realm. 
weblogic.management.security.authentication Provides interfaces and classes for the configuration, control and monitoring of Authentication security providers in a WebLogic security realm. 
weblogic.management.security.authorization Provides interfaces and classes for the configuration, control and monitoring of Authorization, Adjudication, and Role Mapping security providers in a WebLogic security realm. 
weblogic.security.providers.authentication   
weblogic.security.providers.saml   
 

Uses of InvalidParameterException in weblogic.management.security
 

Methods in weblogic.management.security that throw InvalidParameterException
 void ImportMBean.importData(String format, String filename, Properties constraints)
          Imports provider specific data from a specified format.
 void ExportMBean.exportData(String format, String filename, Properties constraints)
          Exports provider specific data in a specified format.
 

Uses of InvalidParameterException in weblogic.management.security.authentication
 

Methods in weblogic.management.security.authentication that throw InvalidParameterException
 void UserRemoverMBean.removeUser(String userName)
          Removes a user.
 String UserReaderMBean.listUsers(String userNameWildcard, int maximumToReturn)
          Searches for a user name that matches a pattern.
 boolean UserReaderMBean.userExists(String userName)
          Indicates whether the specified user exists.
 String UserReaderMBean.getUserDescription(String userName)
          Gets a user's description.
 void UserPasswordEditorMBean.changeUserPassword(String userName, String oldPassword, String newPassword)
          Used by a user to change his or her password.
 void UserPasswordEditorMBean.resetUserPassword(String userName, String newPassword)
          Used by an administrator to change a user's password.
 void UserEditorMBean.createUser(String userName, String password, String description)
          Creates a user and sets the user's password.
 void UserEditorMBean.setUserDescription(String userName, String description)
          Sets the description for an existing user.
 String MemberGroupListerMBean.listMemberGroups(String memberUserOrGroupName)
          Lists the groups that directly contain a user or a group.
 void GroupRemoverMBean.removeGroup(String groupName)
          Removes a group.
 String GroupReaderMBean.listGroups(String groupNameWildcard, int maximumToReturn)
          Searches for a user name that matches a pattern.
 boolean GroupReaderMBean.groupExists(String groupName)
          Indicates whether the specified group exists.
 String GroupReaderMBean.getGroupDescription(String groupName)
          Gets a group's description.
 boolean GroupReaderMBean.isMember(String parentGroupName, String memberUserOrGroupName, boolean recursive)
          Indicates whether a user or group is a member of the group that you specify.
 String GroupMemberListerMBean.listGroupMembers(String groupName, String memberUserOrGroupNameWildcard, int maximumToReturn)
          Searches within a group for user and group (member) names that match a pattern.
 void GroupEditorMBean.createGroup(String groupName, String description)
          Creates a group.
 void GroupEditorMBean.setGroupDescription(String groupName, String description)
          Sets the description for an existing group.
 void GroupEditorMBean.addMemberToGroup(String groupName, String memberUserOrGroupName)
          Adds a user or group (member) to a group.
 void GroupEditorMBean.removeMemberFromGroup(String groupName, String memberUserOrGroupName)
          Removes a user or group (member) from a group.
 

Uses of InvalidParameterException in weblogic.management.security.authorization
 

Methods in weblogic.management.security.authorization that throw InvalidParameterException
 String RoleListerMBean.listRolesByResourceType(String resourceType, int maximumToReturn)
          Obtain an list of role definitions by resource type.
 String RoleListerMBean.listRolesByApplication(String applicationName, int maximumToReturn)
          Obtain an list of role definitions by application name.
 String RoleListerMBean.listRolesByComponent(String componentName, String componentType, String applicationName, int maximumToReturn)
          Obtain an list of role definitions for a specific J2EE component.
 String RoleListerMBean.listRoles(String resourceId, int maximumToReturn)
          Obtain a list of role definitions for a specific resource.
 String RoleListerMBean.listChildRoles(String resourceId, int maximumToReturn)
          Obtain a list of role definitions for the children of a resource.
 String RoleListerMBean.listRepeatingActionsRoles(String resourceId, int maximumToReturn)
          Obtain a list of role definitions for the actions that are repeating on a resource.
 Properties RoleListerMBean.getRole(String resourceId, String roleName)
          Obtain a role definition.
 Properties RoleListerMBean.getRoleScopedByResource(String resourceId, String roleName)
          Obtain a role definition for a role scoped by a specified resource.
 void RoleAuxiliaryMBean.exportResource(String filename, String cn)
          Exports provider specific role data using an LDAP CN search filter to specify the resources for export.
 String PolicyListerMBean.listPoliciesByResourceType(String resourceType, int maximumToReturn)
          Obtain an list of policy definitions by resource type.
 String PolicyListerMBean.listPoliciesByApplication(String applicationName, int maximumToReturn)
          Obtain an list of policy definitions by application name.
 String PolicyListerMBean.listPoliciesByComponent(String componentName, String componentType, String applicationName, int maximumToReturn)
          Obtain an list of policy definitions for a specific J2EE component.
 String PolicyListerMBean.listChildPolicies(String resourceId, int maximumToReturn)
          Obtain a list of policy definitions for the children of a resource.
 String PolicyListerMBean.listRepeatingActionsPolicies(String resourceId, int maximumToReturn)
          Obtain a list of policy definitions for the actions that are repeating on a resource.
 Properties PolicyListerMBean.getPolicy(String resourceId)
          Obtain a policy definition for a resource.
 void PolicyAuxiliaryMBean.exportResource(String filename, String cn)
          Exports provider specific policy data using an LDAP CN search filter to specify the resources for export.
 

Uses of InvalidParameterException in weblogic.security.providers.authentication
 

Methods in weblogic.security.providers.authentication that throw InvalidParameterException
 boolean WindowsNTAuthenticatorImpl.userExists(String userName)
          Return whether a user exists
 String WindowsNTAuthenticatorImpl.listUsers(String userNameWildcard, int maximumToReturn)
          Return a list of users
 String WindowsNTAuthenticatorImpl.getUserDescription(String name)
          Get the description of the user
 String WindowsNTAuthenticatorImpl.listGroups(String groupNameWildcard, int maximumToReturn)
          Return a list with the groups
 boolean WindowsNTAuthenticatorImpl.groupExists(String groupName)
          Return whether a group exists
 boolean WindowsNTAuthenticatorImpl.isMember(String parentGroupName, String memberUserOrGroupName, boolean recursive)
          Return whether a user/group is a member of another group
 String WindowsNTAuthenticatorImpl.getGroupDescription(String name)
          Get the description of the user or group
 void SQLAuthenticatorImpl.removeUser(String userName)
          Remove a user
 void SQLAuthenticatorImpl.createUser(String userName, String password, String description)
          Create a user
 void SQLAuthenticatorImpl.setUserDescription(String userName, String description)
          Set the user description
 void SQLAuthenticatorImpl.changeUserPassword(String userName, String oldPassword, String newPassword)
          Change the user password
 void SQLAuthenticatorImpl.resetUserPassword(String userName, String newPassword)
          Change the user password without the old password
 void SQLAuthenticatorImpl.removeGroup(String groupName)
          Remove a group
 void SQLAuthenticatorImpl.createGroup(String groupName, String description)
          Create a group
 void SQLAuthenticatorImpl.setGroupDescription(String groupName, String description)
          Set the group description
 void SQLAuthenticatorImpl.addMemberToGroup(String groupName, String memberUserOrGroupName)
          Add member to group
 void SQLAuthenticatorImpl.removeMemberFromGroup(String groupName, String memberUserOrGroupName)
          Remove member from group
 String SQLAuthenticatorImpl.listGroupMembers(String groupName, String memberUserOrGroupNameWildcard, int maximumToReturn)
          List Group Members
 boolean ReadOnlySQLAuthenticatorImpl.userExists(String userName)
          Return whether a user exists
 String ReadOnlySQLAuthenticatorImpl.listUsers(String userNameWildcard, int maximumToReturn)
          Return a list of users
 String ReadOnlySQLAuthenticatorImpl.getUserDescription(String name)
          Get the description of the user
 boolean ReadOnlySQLAuthenticatorImpl.groupExists(String groupName)
          Return whether a group exists
 String ReadOnlySQLAuthenticatorImpl.listGroups(String groupNameWildcard, int maximumToReturn)
          Return a list of groups
 String ReadOnlySQLAuthenticatorImpl.getGroupDescription(String name)
          Get the description of the group
 String ReadOnlySQLAuthenticatorImpl.listMemberGroups(String userOrGroupName)
          Return a list with the groups a member belongs to
 boolean ReadOnlySQLAuthenticatorImpl.isMember(String parentGroupName, String memberUserOrGroupName, boolean recursive)
          Return whether a user/group is a member of another group
 String LDAPAuthenticatorImpl.getUserDescription(String name)
          Get the description of the user
 String LDAPAuthenticatorImpl.getGroupDescription(String name)
          Get the description of the user or group
 String LDAPAuthenticatorImpl.listGroupMembers(String groupName, String memberUserOrGroupNameWildcard, int maximumToReturn)
          Return a list with the group members
 String LDAPAuthenticatorImpl.listGroups(String groupNameWildcard, int maximumToReturn)
          Return a list with the groups
 boolean LDAPAuthenticatorImpl.groupExists(String groupName)
          Return whether a group exists
 boolean LDAPAuthenticatorImpl.isMember(String parentGroupName, String memberUserOrGroupName, boolean recursive)
          Return whether a user/group is a member of another group
 String LDAPAuthenticatorImpl.listMemberGroups(String userOrGroupName)
          Return a list with the groups a member belongs to
 String LDAPAuthenticatorImpl.listUsers(String userNameWildcard, int maximumToReturn)
          Return a list of users
 boolean LDAPAuthenticatorImpl.userExists(String userName)
          Return whether a user exists
 void LDAPAuthenticatorImpl.changeUserPassword(String userName, String oldPassword, String newPassword)
          Change the user password
 void LDAPAuthenticatorImpl.resetUserPassword(String userName, String newPassword)
          Change the user password without the old password
 void LDAPAtnDelegate.setDescription(String name, String description)
          Set the description of the user or group
 String LDAPAtnDelegate.getDescription(String userOrGroupName)
          Get the description of the user or group
 String LDAPAtnDelegate.listGroupMembers(String groupName, String userOrGroupNameWildcard, int maximumToReturn)
          Return a list with the group members
 String LDAPAtnDelegate.listGroups(String groupNameWildcard, int maximumToReturn)
          Return a list with the groups
 boolean LDAPAtnDelegate.groupExists(String groupName)
          Return whether a group exists
 boolean LDAPAtnDelegate.isMember(String parentGroupName, String memberUserOrGroupName, boolean recursive)
          Return whether a user/group is a member of another group A static group may contain users and groups.
 void LDAPAtnDelegate.createGroup(String groupName, String description)
          Create a new group
 void LDAPAtnDelegate.addMemberToGroup(String groupName, String memberUserOrGroupName)
          Add a member to a group
 void LDAPAtnDelegate.removeMemberFromGroup(String groupName, String memberUserOrGroupName)
          Remove a member from a group
 void LDAPAtnDelegate.removeGroup(String groupName)
          Remove a group
 String LDAPAtnDelegate.listMemberGroups(String userOrGroupName, boolean isSearchWithUser)
          Return a list with the groups a member belongs to
 String LDAPAtnDelegate.listUsers(String userNameWildcard, int maximumToReturn)
          Return a list of users
 boolean LDAPAtnDelegate.userExists(String userName)
          Return whether a user exists
 void LDAPAtnDelegate.createUser(String userName, String password, String description)
          Create a new user
 void LDAPAtnDelegate.changeUserPassword(String userName, String oldPassword, String newPassword)
          Change the user password
 void LDAPAtnDelegate.resetUserPassword(String userName, String newPassword)
          Change the user password without having old password
 void LDAPAtnDelegate.removeUser(String userName)
          Remove a user
 String LDAPAtnDelegate.getPasswordForUser(weblogic.security.acl.internal.AuthenticatedSubject requestor, String userName)
          Get the password for a user
 void DefaultAuthenticatorImpl.setUserDescription(String name, String description)
          Set the description of the user
 void DefaultAuthenticatorImpl.setGroupDescription(String name, String description)
          Set the description of the group
 String DefaultAuthenticatorImpl.getUserDescription(String name)
          Get the description of the user
 String DefaultAuthenticatorImpl.getGroupDescription(String name)
          Get the description of the group
 String DefaultAuthenticatorImpl.listGroupMembers(String groupName, String memberUserOrGroupNameWildcard, int maximumToReturn)
          Return a list with the group members
 String DefaultAuthenticatorImpl.listGroups(String groupNameWildcard, int maximumToReturn)
          Return a list with the groups
 boolean DefaultAuthenticatorImpl.groupExists(String groupName)
          Return whether a group exists
 boolean DefaultAuthenticatorImpl.isMember(String parentGroupName, String memberUserOrGroupName, boolean recursive)
          Return whether a user/group is a member of another group
 void DefaultAuthenticatorImpl.createGroup(String groupName, String description)
          Create a new group
 void DefaultAuthenticatorImpl.addMemberToGroup(String groupName, String memberUserOrGroupName)
          Add a member to a group
 void DefaultAuthenticatorImpl.removeMemberFromGroup(String groupName, String memberUserOrGroupName)
          Remove a member from a group
 void DefaultAuthenticatorImpl.removeGroup(String userOrGroupName)
          Remove a group
 String DefaultAuthenticatorImpl.listMemberGroups(String userOrGroupName)
          Return a list with the groups a member belongs to
 String DefaultAuthenticatorImpl.listUsers(String userNameWildcard, int maximumToReturn)
          Return a list of users
 boolean DefaultAuthenticatorImpl.userExists(String userName)
          Return whether a user exists
 void DefaultAuthenticatorImpl.createUser(String userName, String password, String description)
          Create a new user
 void DefaultAuthenticatorImpl.changeUserPassword(String userName, String oldPassword, String newPassword)
          Change the user password
 void DefaultAuthenticatorImpl.resetUserPassword(String userName, String newPassword)
          Change the user password without old password
 void DefaultAuthenticatorImpl.removeUser(String userName)
          Remove a user
 void DefaultAuthenticatorImpl.importData(String format, String filename, Properties constraints)
          Imports provider specific data from LDIFT format.
 void DefaultAuthenticatorImpl.exportData(String format, String filename, Properties constraints)
          Exports provider specific data with LDIFT format.
 boolean DBMSSQLReadOnlyAuthenticatorDelegateImpl.userExists(String userName)
           
 boolean DBMSSQLReadOnlyAuthenticatorDelegateImpl.groupExists(String groupName)
           
 String DBMSSQLReadOnlyAuthenticatorDelegateImpl.listUsers(String userNameWildcard, int maximumToReturn)
           
 String DBMSSQLReadOnlyAuthenticatorDelegateImpl.getUserDescription(String name)
           
 String DBMSSQLReadOnlyAuthenticatorDelegateImpl.listGroups(String groupNameWildcard, int maximumToReturn)
           
 String DBMSSQLReadOnlyAuthenticatorDelegateImpl.getGroupDescription(String groupName)
          Get the description of the group
 boolean DBMSSQLReadOnlyAuthenticatorDelegateImpl.isMember(String parentGroupName, String memberUserOrGroupName, boolean recursive)
          Return whether a user/group is a member of another group
 String DBMSSQLReadOnlyAuthenticatorDelegateImpl.listMemberGroups(String userOrGroupName)
           
 void DBMSSQLAuthenticatorDelegateImpl.removeUser(String userName)
          Remove a user
 void DBMSSQLAuthenticatorDelegateImpl.createUser(String userName, String password, String description)
          Create a user
 void DBMSSQLAuthenticatorDelegateImpl.setUserDescription(String userName, String description)
          Set the user description
 void DBMSSQLAuthenticatorDelegateImpl.changeUserPassword(String userName, String oldPassword, String newPassword)
          Change the user password
 void DBMSSQLAuthenticatorDelegateImpl.resetUserPassword(String userName, String newPassword)
          Change the user password without the old password
 void DBMSSQLAuthenticatorDelegateImpl.removeGroup(String groupName)
          Remove a group
 void DBMSSQLAuthenticatorDelegateImpl.createGroup(String groupName, String description)
          Create a group
 void DBMSSQLAuthenticatorDelegateImpl.setGroupDescription(String groupName, String description)
          Set the group description
 void DBMSSQLAuthenticatorDelegateImpl.addMemberToGroup(String groupName, String memberUserOrGroupName)
          Add member to group
 void DBMSSQLAuthenticatorDelegateImpl.removeMemberFromGroup(String groupName, String memberUserOrGroupName)
          Remove member from group
 String DBMSSQLAuthenticatorDelegateImpl.listGroupMembers(String groupName, String memberUserOrGroupNameWildcard, int maximumToReturn)
          List Group Members
 

Uses of InvalidParameterException in weblogic.security.providers.saml
 

Methods in weblogic.security.providers.saml that throw InvalidParameterException
 String SAMLIdentityAsserterV2Impl.listAssertingParties(String partnerIdWildcard, int maxToReturn)
           
 String SAMLIdentityAsserterV2Impl.listCertificates(String aliasWildcard, int maxToReturn)
           
 boolean SAMLIdentityAsserterV2Impl.relyingPartyExists(String partnerId)
           
 weblogic.security.providers.saml.registry.SAMLAssertingParty SAMLIdentityAsserterV2Impl.getAssertingParty(String partnerId)
           
 void SAMLIdentityAsserterV2Impl.addAssertingParty(weblogic.security.providers.saml.registry.SAMLAssertingParty partner)
           
 void SAMLIdentityAsserterV2Impl.updateAssertingParty(weblogic.security.providers.saml.registry.SAMLAssertingParty partner)
           
 void SAMLIdentityAsserterV2Impl.removeAssertingParty(String partnerId)
           
 void SAMLIdentityAsserterV2Impl.registerCertificate(String alias, String certificateFile)
           
 void SAMLIdentityAsserterV2Impl.unregisterCertificate(String alias)
           
 X509Certificate SAMLIdentityAsserterV2Impl.getCertificate(String alias)
           
 boolean SAMLIdentityAsserterV2Impl.certificateExists(String alias)
           
 void SAMLIdentityAsserterV2Impl.copyToPEM(String alias, String certificateFile)
           
 void SAMLIdentityAsserterV2Impl.copyToDER(String alias, String certificateFile)
           
 void SAMLIdentityAsserterV2Impl.importData(String format, String filename, Properties constraints)
           
 void SAMLIdentityAsserterV2Impl.exportData(String format, String filename, Properties constraints)
           
 void SAMLIdentityAsserterImpl.registerCertificate(String alias, String certificateFile)
           
 void SAMLIdentityAsserterImpl.unregisterCertificate(String alias)
           
 String SAMLIdentityAsserterImpl.listAliases(String aliasWildcard, int maxToReturn)
           
 X509Certificate SAMLIdentityAsserterImpl.getCertificate(String alias)
           
 boolean SAMLIdentityAsserterImpl.aliasExists(String alias)
           
 void SAMLIdentityAsserterImpl.copyToPEM(String alias, String certificateFile)
           
 void SAMLIdentityAsserterImpl.copyToDER(String alias, String certificateFile)
           
 void SAMLIdentityAsserterImpl.importData(String format, String filename, Properties constraints)
           
 void SAMLIdentityAsserterImpl.exportData(String format, String filename, Properties constraints)
           
 String SAMLCredentialMapperV2Impl.listRelyingParties(String partnerIdWildcard, int maxToReturn)
           
 String SAMLCredentialMapperV2Impl.listCertificates(String aliasWildcard, int maxToReturn)
           
 boolean SAMLCredentialMapperV2Impl.relyingPartyExists(String partnerId)
           
 weblogic.security.providers.saml.registry.SAMLRelyingParty SAMLCredentialMapperV2Impl.getRelyingParty(String partnerId)
           
 void SAMLCredentialMapperV2Impl.addRelyingParty(weblogic.security.providers.saml.registry.SAMLRelyingParty partner)
           
 void SAMLCredentialMapperV2Impl.updateRelyingParty(weblogic.security.providers.saml.registry.SAMLRelyingParty partner)
           
 void SAMLCredentialMapperV2Impl.removeRelyingParty(String partnerId)
           
 void SAMLCredentialMapperV2Impl.registerCertificate(String alias, String certificateFile)
           
 void SAMLCredentialMapperV2Impl.unregisterCertificate(String alias)
           
 X509Certificate SAMLCredentialMapperV2Impl.getCertificate(String alias)
           
 boolean SAMLCredentialMapperV2Impl.certificateExists(String alias)
           
 void SAMLCredentialMapperV2Impl.copyToPEM(String alias, String certificateFile)
           
 void SAMLCredentialMapperV2Impl.copyToDER(String alias, String certificateFile)
           
 void SAMLCredentialMapperV2Impl.importData(String format, String filename, Properties constraints)
           
 void SAMLCredentialMapperV2Impl.exportData(String format, String filename, Properties constraints)
           
 


Documentation is available at
http://download.oracle.com/docs/cd/E13222_01/wls/docs91
Copyright 2005 BEA Systems Inc.