|
Oracle Fusion Middleware Oracle WebLogic Server MBean Javadoc 11g Release 1 (10.3.6) Part Number E13945-06 |
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface OracleVirtualDirectoryAuthenticatorMBean
This MBean specifies the LDAP schema definitions for the Oracle Virtual Directory Authentication provider.
This is a type-safe interface for a WebLogic Server MBean, which you can import into your client classes and access through weblogic.management.MBeanHome
. As of 9.0, the MBeanHome
interface and all type-safe interfaces for WebLogic Server MBeans are deprecated. Instead, client classes that interact with WebLogic Server MBeans should use standard JMX design patterns in which clients use the javax.management.MBeanServerConnection
interface to discover MBeans, attributes, and attribute types at runtime.
Method Summary | |
---|---|
String |
getAllGroupsFilter()
An LDAP search filter for finding all groups beneath the base group distinguished name (DN). |
String |
getAllUsersFilter()
An LDAP search filter for finding all users beneath the base user distinguished name (DN). |
String |
getDynamicGroupNameAttribute()
The attribute of a dynamic LDAP group object that specifies the name of the group. |
String |
getDynamicGroupObjectClass()
The LDAP object class that stores dynamic groups. |
String |
getDynamicMemberURLAttribute()
The attribute of the dynamic LDAP group object that specifies the URLs of the members of the dynamic group. |
String |
getGroupFromNameFilter()
An LDAP search filter for finding a group given the name of the group. |
String |
getGuidAttribute()
Specifies the name of the GUID attribute defined in the Oracle Virtual Directory LDAP server. |
String |
getName()
The name of this configuration. |
String |
getUserFromNameFilter()
An LDAP search filter for finding a user given the name of the user. |
String |
getUserNameAttribute()
No description provided. |
void |
setAllGroupsFilter(String newValue)
An LDAP search filter for finding all groups beneath the base group distinguished name (DN). |
void |
setAllUsersFilter(String newValue)
An LDAP search filter for finding all users beneath the base user distinguished name (DN). |
void |
setDynamicGroupNameAttribute(String newValue)
The attribute of a dynamic LDAP group object that specifies the name of the group. |
void |
setDynamicGroupObjectClass(String newValue)
The LDAP object class that stores dynamic groups. |
void |
setDynamicMemberURLAttribute(String newValue)
The attribute of the dynamic LDAP group object that specifies the URLs of the members of the dynamic group. |
void |
setGroupFromNameFilter(String newValue)
An LDAP search filter for finding a group given the name of the group. |
void |
setGuidAttribute(String newValue)
Specifies the name of the GUID attribute defined in the Oracle Virtual Directory LDAP server. |
void |
setUserFromNameFilter(String newValue)
An LDAP search filter for finding a user given the name of the user. |
void |
setUserNameAttribute(String newValue)
No description provided. |
Methods inherited from interface weblogic.security.providers.authentication.LoginExceptionPropagatorMBean |
---|
getPropagateCauseForLoginException, setPropagateCauseForLoginException |
Methods inherited from interface weblogic.management.security.authentication.AuthenticatorMBean |
---|
getControlFlag, setControlFlag |
Methods inherited from interface weblogic.management.security.ProviderMBean |
---|
getRealm |
Methods inherited from interface weblogic.management.security.authentication.UserReaderMBean |
---|
getUserDescription, listUsers, userExists |
Methods inherited from interface weblogic.management.utils.NameListerMBean |
---|
getCurrentName |
Methods inherited from interface weblogic.management.utils.ListerMBean |
---|
advance, close, haveCurrent |
Methods inherited from interface weblogic.management.security.authentication.GroupReaderMBean |
---|
getGroupDescription, groupExists, isMember, listGroups |
Methods inherited from interface weblogic.management.utils.NameListerMBean |
---|
getCurrentName |
Methods inherited from interface weblogic.management.utils.ListerMBean |
---|
advance, close, haveCurrent |
Methods inherited from interface weblogic.management.security.authentication.GroupMemberListerMBean |
---|
listGroupMembers |
Methods inherited from interface weblogic.management.security.authentication.GroupReaderMBean |
---|
getGroupDescription, groupExists, isMember, listGroups |
Methods inherited from interface weblogic.management.utils.NameListerMBean |
---|
getCurrentName |
Methods inherited from interface weblogic.management.utils.ListerMBean |
---|
advance, close, haveCurrent |
Methods inherited from interface weblogic.management.security.authentication.MemberGroupListerMBean |
---|
listMemberGroups |
Methods inherited from interface weblogic.management.security.authentication.GroupReaderMBean |
---|
getGroupDescription, groupExists, isMember, listGroups |
Methods inherited from interface weblogic.management.utils.NameListerMBean |
---|
getCurrentName |
Methods inherited from interface weblogic.management.utils.ListerMBean |
---|
advance, close, haveCurrent |
Methods inherited from interface weblogic.management.security.authentication.UserPasswordEditorMBean |
---|
changeUserPassword, resetUserPassword |
Methods inherited from interface weblogic.management.security.authentication.GroupMembershipHierarchyCacheMBean |
---|
getGroupHierarchyCacheTTL, getMaxGroupHierarchiesInCache, setGroupHierarchyCacheTTL, setMaxGroupHierarchiesInCache |
Method Detail |
---|
String getUserNameAttribute()
getUserNameAttribute
in interface LDAPAuthenticatorMBean
void setUserNameAttribute(String newValue) throws InvalidAttributeValueException
setUserNameAttribute
in interface LDAPAuthenticatorMBean
newValue
- - new value for attribute UserNameAttribute
InvalidAttributeValueException
String getAllUsersFilter()
An LDAP search filter for finding all users beneath the base user distinguished name (DN). Note: If you change the user name attribute to a type other than cn
, you must duplicate that change in the UserFromNameFilter
and UserNameAttribute
attributes.
For example, to change the user name attribute to uid
, specify (uid=*)
in the search filter. If the attribute is not specified (that is, if the attribute is null or empty), a default search filter is created based on the user schema.
getAllUsersFilter
in interface LDAPAuthenticatorMBean
void setAllUsersFilter(String newValue) throws InvalidAttributeValueException
An LDAP search filter for finding all users beneath the base user distinguished name (DN). Note: If you change the user name attribute to a type other than cn
, you must duplicate that change in the UserFromNameFilter
and UserNameAttribute
attributes.
For example, to change the user name attribute to uid
, specify (uid=*)
in the search filter. If the attribute is not specified (that is, if the attribute is null or empty), a default search filter is created based on the user schema.
setAllUsersFilter
in interface LDAPAuthenticatorMBean
newValue
- - new value for attribute AllUsersFilter
InvalidAttributeValueException
String getUserFromNameFilter()
An LDAP search filter for finding a user given the name of the user. The user name attribute type specified in this filter must match the one specified in the AllUsersFilter
and UserNameAttribute
attributes.
For example, if the user name attribute is changed from type cn
to uid
, revise (cn=%u)
to (uid=%u)
.
If the attribute (user name attribute and user object class) is not specified (that is, if the attribute is null or empty), a default search filter is created based on the user schema.
getUserFromNameFilter
in interface LDAPAuthenticatorMBean
void setUserFromNameFilter(String newValue) throws InvalidAttributeValueException
An LDAP search filter for finding a user given the name of the user. The user name attribute type specified in this filter must match the one specified in the AllUsersFilter
and UserNameAttribute
attributes.
For example, if the user name attribute is changed from type cn
to uid
, revise (cn=%u)
to (uid=%u)
.
If the attribute (user name attribute and user object class) is not specified (that is, if the attribute is null or empty), a default search filter is created based on the user schema.
setUserFromNameFilter
in interface LDAPAuthenticatorMBean
newValue
- - new value for attribute UserFromNameFilter
InvalidAttributeValueException
String getAllGroupsFilter()
An LDAP search filter for finding all groups beneath the base group distinguished name (DN). Note the following:
StaticGroupObjectClass
and StaticMemberDNAttribute
attributes.StaticGroupObjectClass
is set to groupofnames
, the objectclass
element in the search filter should be set to groupofnames
.StaticGroupNameAttribute
attribute is changed from type cn
to uid
, this filter should also specify (uid=*)
as the group name type.
getAllGroupsFilter
in interface LDAPAuthenticatorMBean
void setAllGroupsFilter(String newValue) throws InvalidAttributeValueException
An LDAP search filter for finding all groups beneath the base group distinguished name (DN). Note the following:
StaticGroupObjectClass
and StaticMemberDNAttribute
attributes.StaticGroupObjectClass
is set to groupofnames
, the objectclass
element in the search filter should be set to groupofnames
.StaticGroupNameAttribute
attribute is changed from type cn
to uid
, this filter should also specify (uid=*)
as the group name type.
setAllGroupsFilter
in interface LDAPAuthenticatorMBean
newValue
- - new value for attribute AllGroupsFilter
InvalidAttributeValueException
String getGroupFromNameFilter()
An LDAP search filter for finding a group given the name of the group. Note the following:
StaticGroupObjectClass
and StaticMemberDNAttribute
attributes.StaticGroupObjectClass
is set to groupofnames
, the objectclass
element in the search filter should be set to groupofnames
.DynamicGroupNameAttribute
attribute is changed from type cn
to uid
, this filter should also specify (uid=*)
as the group name type.
getGroupFromNameFilter
in interface LDAPAuthenticatorMBean
void setGroupFromNameFilter(String newValue) throws InvalidAttributeValueException
An LDAP search filter for finding a group given the name of the group. Note the following:
StaticGroupObjectClass
and StaticMemberDNAttribute
attributes.StaticGroupObjectClass
is set to groupofnames
, the objectclass
element in the search filter should be set to groupofnames
.DynamicGroupNameAttribute
attribute is changed from type cn
to uid
, this filter should also specify (uid=*)
as the group name type.
setGroupFromNameFilter
in interface LDAPAuthenticatorMBean
newValue
- - new value for attribute GroupFromNameFilter
InvalidAttributeValueException
String getDynamicGroupNameAttribute()
The attribute of a dynamic LDAP group object that specifies the name of the group. If the name attribute type of the dynamic LDAP group object is changed -- for example, from cn
to uid
-- this change must be duplicated in the AllGroupsFilter
and GroupFromNameFilter
attributes.
getDynamicGroupNameAttribute
in interface LDAPAuthenticatorMBean
void setDynamicGroupNameAttribute(String newValue) throws InvalidAttributeValueException
The attribute of a dynamic LDAP group object that specifies the name of the group. If the name attribute type of the dynamic LDAP group object is changed -- for example, from cn
to uid
-- this change must be duplicated in the AllGroupsFilter
and GroupFromNameFilter
attributes.
setDynamicGroupNameAttribute
in interface LDAPAuthenticatorMBean
newValue
- - new value for attribute DynamicGroupNameAttribute
InvalidAttributeValueException
String getDynamicGroupObjectClass()
The LDAP object class that stores dynamic groups.
getDynamicGroupObjectClass
in interface LDAPAuthenticatorMBean
void setDynamicGroupObjectClass(String newValue) throws InvalidAttributeValueException
The LDAP object class that stores dynamic groups.
setDynamicGroupObjectClass
in interface LDAPAuthenticatorMBean
newValue
- - new value for attribute DynamicGroupObjectClass
InvalidAttributeValueException
String getDynamicMemberURLAttribute()
The attribute of the dynamic LDAP group object that specifies the URLs of the members of the dynamic group.
getDynamicMemberURLAttribute
in interface LDAPAuthenticatorMBean
void setDynamicMemberURLAttribute(String newValue) throws InvalidAttributeValueException
The attribute of the dynamic LDAP group object that specifies the URLs of the members of the dynamic group.
setDynamicMemberURLAttribute
in interface LDAPAuthenticatorMBean
newValue
- - new value for attribute DynamicMemberURLAttribute
InvalidAttributeValueException
String getGuidAttribute()
Specifies the name of the GUID attribute defined in the Oracle Virtual Directory LDAP server. The default value is orclguid
.
getGuidAttribute
in interface LDAPAuthenticatorMBean
void setGuidAttribute(String newValue) throws InvalidAttributeValueException
Specifies the name of the GUID attribute defined in the Oracle Virtual Directory LDAP server. The default value is orclguid
.
setGuidAttribute
in interface LDAPAuthenticatorMBean
newValue
- - new value for attribute GuidAttribute
InvalidAttributeValueException
String getName()
ProviderMBean
getName
in interface LDAPAuthenticatorMBean
getName
in interface LoginExceptionPropagatorMBean
getName
in interface ProviderMBean
|
Copyright 1996, 2011, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Oracle Fusion Middleware Oracle WebLogic Server MBean Javadoc 11g Release 1 (10.3.6) Part Number E13945-06 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |