Provides a set of methods for creating, editing and removing user attributes and values.An authentication provider MBean can optionally implement this MBean. The WebLogic Server Administration Console detects when an authentication provider implements this MBean and automatically provides a GUI for using these methods.
Fully Qualified Interface Name | If you use the getMBeanInfo operation in MBeanTypeServiceMBean, supply the following value as this MBean's fully qualified interface name:
weblogic.management.security.authentication.UserAttributeEditorMBean
|
||
Factory Methods | No factory methods. Instances of this MBean are created automatically. | ||
Subtypes |
The following MBeans extend or implement this MBean type:
|
This section describes the following attributes:
|
Provides a list of supported user attribute names for the provider.
Privileges | Read only |
Type | class java.lang.String[] |
Redeploy or Restart required | Changes take effect after you redeploy the module or restart the server. |
This section describes the following operations:
Returns the user attribute type
Operation Name | "getSupportedUserAttributeType" |
Parameters | Object [] { userAttributeName }
where:
|
Signature | String [] {
"java.lang.String" } |
Returns | OpenType
|
Exceptions |
|
Gets a user attribute value for a user. If the user attribute is unset,a null would be returned.
Operation Name | "getUserAttributeValue" |
Parameters | Object [] { userName, userAttributeName }
where:
|
Signature | String [] {
"java.lang.String",
"java.lang.String" } |
Returns | Object
|
Exceptions |
|
Returns true if the specified attribute has been set explicitly in this MBean instance.
Operation Name | "isSet" |
Parameters | Object [] { propertyName }
where:
|
Signature | String [] {
"java.lang.String" } |
Returns |
boolean
|
Exceptions |
|
Checks if a user attribute is supported.
Operation Name | "isUserAttributeNameSupported" |
Parameters | Object [] { userAttributeName }
where:
|
Signature | String [] {
"java.lang.String" } |
Returns |
boolean
|
Exceptions |
|
Sets the value for a user attribute for a user. If a supported user attribute does not exist for the user, a new user attribute entry is created and the value is set. If a null is set as the user attribute value, the user attribute would be unset for the user.
Operation Name | "setUserAttributeValue" |
Parameters | Object [] { userName, userAttributeName, newValue }
where:
|
Signature | String [] {
"java.lang.String",
"java.lang.String",
"java.lang.Object" } |
Returns |
void
|
Exceptions |
|
Restore the given property to its default value.
Operation Name | "unSet" |
Parameters | Object [] { propertyName }
where:
|
Signature | String [] {
"java.lang.String" } |
Returns |
void
|
Exceptions |
|
Operation Name | "wls_getDisplayName" |
Parameters | null |
Signature | null |
Returns | String
|