Class LdapSearchAuthenticationModuleType
- java.lang.Object
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.LdapSearchAuthenticationModuleType
-
- All Implemented Interfaces:
Containerable
,DebugDumpable
,Serializable
,Cloneable
public class LdapSearchAuthenticationModuleType extends Object implements Serializable, Cloneable, Containerable
Search configuration which uses an Ldap filter to locate the userJava class for LdapSearchAuthenticationModuleType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="LdapSearchAuthenticationModuleType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="pattern" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="namingAttr" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="subtree" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static QName
COMPLEX_TYPE
static ItemName
F_NAMING_ATTR
static ItemName
F_PATTERN
static ItemName
F_SUBTREE
-
Fields inherited from interface com.evolveum.midpoint.util.DebugDumpable
INDENT_STRING
-
-
Constructor Summary
Constructors Constructor Description LdapSearchAuthenticationModuleType()
LdapSearchAuthenticationModuleType(PrismContext prismContext)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PrismContainerValue
asPrismContainerValue()
LdapSearchAuthenticationModuleType
clone()
<X> X
end()
boolean
equals(Object object)
String
getNamingAttr()
String
getPattern()
int
hashCode()
Boolean
isSubtree()
LdapSearchAuthenticationModuleType
namingAttr(String value)
LdapSearchAuthenticationModuleType
pattern(String value)
void
setNamingAttr(String value)
void
setPattern(String value)
void
setSubtree(Boolean value)
void
setupContainerValue(PrismContainerValue containerValue)
Setup value to the containerable representation.LdapSearchAuthenticationModuleType
subtree(Boolean value)
String
toString()
-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.evolveum.midpoint.prism.Containerable
cloneWithoutId, debugDump
-
Methods inherited from interface com.evolveum.midpoint.util.DebugDumpable
debugDump, debugDumpLazily, debugDumpLazily
-
-
-
-
Constructor Detail
-
LdapSearchAuthenticationModuleType
public LdapSearchAuthenticationModuleType()
-
LdapSearchAuthenticationModuleType
public LdapSearchAuthenticationModuleType(PrismContext prismContext)
-
-
Method Detail
-
asPrismContainerValue
public PrismContainerValue asPrismContainerValue()
- Specified by:
asPrismContainerValue
in interfaceContainerable
-
setupContainerValue
public void setupContainerValue(PrismContainerValue containerValue)
Description copied from interface:Containerable
Setup value to the containerable representation. This is used to after (empty) containerable is created to initialize it with a correct prism container value. Note: This method DOES NOT change the container value parent.- Specified by:
setupContainerValue
in interfaceContainerable
-
end
public <X> X end()
-
getPattern
public String getPattern()
-
setPattern
public void setPattern(String value)
-
getNamingAttr
public String getNamingAttr()
-
setNamingAttr
public void setNamingAttr(String value)
-
isSubtree
public Boolean isSubtree()
-
setSubtree
public void setSubtree(Boolean value)
-
pattern
public LdapSearchAuthenticationModuleType pattern(String value)
-
namingAttr
public LdapSearchAuthenticationModuleType namingAttr(String value)
-
subtree
public LdapSearchAuthenticationModuleType subtree(Boolean value)
-
clone
public LdapSearchAuthenticationModuleType clone()
-
-