Class StringPolicyType
- java.lang.Object
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.StringPolicyType
-
- All Implemented Interfaces:
Containerable
,DebugDumpable
,Serializable
,Cloneable
public class StringPolicyType extends Object implements Serializable, Cloneable, Containerable
Java class for StringPolicyType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="StringPolicyType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element ref="{http://midpoint.evolveum.com/xml/ns/public/common/common-3}documentation" minOccurs="0"/> <element name="limitations" type="{http://midpoint.evolveum.com/xml/ns/public/common/common-3}LimitationsType" minOccurs="0"/> <element name="characterClass" type="{http://midpoint.evolveum.com/xml/ns/public/common/common-3}CharacterClassType" minOccurs="0"/> </sequence> <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}long" /> </restriction> </complexContent> </complexType>
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static QName
COMPLEX_TYPE
static ItemName
F_CHARACTER_CLASS
static ItemName
F_DESCRIPTION
static ItemName
F_DOCUMENTATION
static ItemName
F_LIMITATIONS
-
Fields inherited from interface com.evolveum.midpoint.util.DebugDumpable
INDENT_STRING
-
-
Constructor Summary
Constructors Constructor Description StringPolicyType()
StringPolicyType(PrismContext prismContext)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PrismContainerValue
asPrismContainerValue()
CharacterClassType
beginCharacterClass()
LimitationsType
beginLimitations()
StringPolicyType
characterClass(CharacterClassType value)
StringPolicyType
clone()
StringPolicyType
description(String value)
StringPolicyType
documentation(String value)
<X> X
end()
boolean
equals(Object object)
CharacterClassType
getCharacterClass()
String
getDescription()
String
getDocumentation()
Long
getId()
LimitationsType
getLimitations()
int
hashCode()
StringPolicyType
id(Long value)
StringPolicyType
limitations(LimitationsType value)
void
setCharacterClass(CharacterClassType value)
void
setDescription(String value)
void
setDocumentation(String value)
void
setId(Long value)
void
setLimitations(LimitationsType value)
void
setupContainerValue(PrismContainerValue containerValue)
Setup value to the containerable representation.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
-
-
-
-
Field Detail
-
COMPLEX_TYPE
public static final QName COMPLEX_TYPE
-
F_DESCRIPTION
public static final ItemName F_DESCRIPTION
-
F_DOCUMENTATION
public static final ItemName F_DOCUMENTATION
-
F_LIMITATIONS
public static final ItemName F_LIMITATIONS
-
F_CHARACTER_CLASS
public static final ItemName F_CHARACTER_CLASS
-
-
Constructor Detail
-
StringPolicyType
public StringPolicyType()
-
StringPolicyType
public StringPolicyType(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()
-
getDescription
public String getDescription()
-
setDescription
public void setDescription(String value)
-
getDocumentation
public String getDocumentation()
-
setDocumentation
public void setDocumentation(String value)
-
getLimitations
public LimitationsType getLimitations()
-
setLimitations
public void setLimitations(LimitationsType value)
-
getCharacterClass
public CharacterClassType getCharacterClass()
-
setCharacterClass
public void setCharacterClass(CharacterClassType value)
-
getId
public Long getId()
-
setId
public void setId(Long value)
-
description
public StringPolicyType description(String value)
-
documentation
public StringPolicyType documentation(String value)
-
limitations
public StringPolicyType limitations(LimitationsType value)
-
beginLimitations
public LimitationsType beginLimitations()
-
characterClass
public StringPolicyType characterClass(CharacterClassType value)
-
beginCharacterClass
public CharacterClassType beginCharacterClass()
-
id
public StringPolicyType id(Long value)
-
clone
public StringPolicyType clone()
-
-