Class LinkTypeDefinitionType
- java.lang.Object
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.LinkTypeDefinitionType
-
- All Implemented Interfaces:
Containerable
,DebugDumpable
,Serializable
,Cloneable
public class LinkTypeDefinitionType extends Object implements Serializable, Cloneable, Containerable
Definitions of a link type. EXPERIMENTAL. UNSTABLE. DO NOT USE.Java class for LinkTypeDefinitionType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="LinkTypeDefinitionType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="selector" type="{http://midpoint.evolveum.com/xml/ns/public/common/common-3}LinkedObjectSelectorType" 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_NAME
static ItemName
F_SELECTOR
-
Fields inherited from interface com.evolveum.midpoint.util.DebugDumpable
INDENT_STRING
-
-
Constructor Summary
Constructors Constructor Description LinkTypeDefinitionType()
LinkTypeDefinitionType(PrismContext prismContext)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PrismContainerValue
asPrismContainerValue()
LinkedObjectSelectorType
beginSelector()
LinkTypeDefinitionType
clone()
<X> X
end()
boolean
equals(Object object)
Long
getId()
String
getName()
LinkedObjectSelectorType
getSelector()
int
hashCode()
LinkTypeDefinitionType
id(Long value)
LinkTypeDefinitionType
name(String value)
LinkTypeDefinitionType
selector(LinkedObjectSelectorType value)
void
setId(Long value)
void
setName(String value)
void
setSelector(LinkedObjectSelectorType 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
-
-
-
-
Constructor Detail
-
LinkTypeDefinitionType
public LinkTypeDefinitionType()
-
LinkTypeDefinitionType
public LinkTypeDefinitionType(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()
-
getName
public String getName()
-
setName
public void setName(String value)
-
getSelector
public LinkedObjectSelectorType getSelector()
-
setSelector
public void setSelector(LinkedObjectSelectorType value)
-
getId
public Long getId()
-
setId
public void setId(Long value)
-
name
public LinkTypeDefinitionType name(String value)
-
selector
public LinkTypeDefinitionType selector(LinkedObjectSelectorType value)
-
beginSelector
public LinkedObjectSelectorType beginSelector()
-
id
public LinkTypeDefinitionType id(Long value)
-
clone
public LinkTypeDefinitionType clone()
-
-