Class ItemMergeConfigurationType
- java.lang.Object
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.ItemMergeConfigurationType
-
- All Implemented Interfaces:
Containerable
,DebugDumpable
,Serializable
,Cloneable
- Direct Known Subclasses:
ItemRefMergeConfigurationType
,ProjectionMergeConfigurationType
public class ItemMergeConfigurationType extends Object implements Serializable, Cloneable, Containerable
TODOJava class for ItemMergeConfigurationType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ItemMergeConfigurationType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="left" type="{http://midpoint.evolveum.com/xml/ns/public/common/common-3}MergeStrategyType" minOccurs="0"/> <element name="right" type="{http://midpoint.evolveum.com/xml/ns/public/common/common-3}MergeStrategyType" minOccurs="0"/> <element name="valueExpression" type="{http://midpoint.evolveum.com/xml/ns/public/common/common-3}ExpressionType" 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_LEFT
static ItemName
F_RIGHT
static ItemName
F_VALUE_EXPRESSION
-
Fields inherited from interface com.evolveum.midpoint.util.DebugDumpable
INDENT_STRING
-
-
Constructor Summary
Constructors Constructor Description ItemMergeConfigurationType()
ItemMergeConfigurationType(PrismContext prismContext)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PrismContainerValue
asPrismContainerValue()
ExpressionType
beginValueExpression()
ItemMergeConfigurationType
clone()
<X> X
end()
boolean
equals(Object object)
Long
getId()
MergeStrategyType
getLeft()
MergeStrategyType
getRight()
ExpressionType
getValueExpression()
int
hashCode()
ItemMergeConfigurationType
id(Long value)
ItemMergeConfigurationType
left(MergeStrategyType value)
ItemMergeConfigurationType
right(MergeStrategyType value)
void
setId(Long value)
void
setLeft(MergeStrategyType value)
void
setRight(MergeStrategyType value)
void
setupContainerValue(PrismContainerValue containerValue)
Setup value to the containerable representation.void
setValueExpression(ExpressionType value)
String
toString()
ItemMergeConfigurationType
valueExpression(ExpressionType value)
-
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
-
ItemMergeConfigurationType
public ItemMergeConfigurationType()
-
ItemMergeConfigurationType
public ItemMergeConfigurationType(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()
-
getLeft
public MergeStrategyType getLeft()
-
setLeft
public void setLeft(MergeStrategyType value)
-
getRight
public MergeStrategyType getRight()
-
setRight
public void setRight(MergeStrategyType value)
-
getValueExpression
public ExpressionType getValueExpression()
-
setValueExpression
public void setValueExpression(ExpressionType value)
-
getId
public Long getId()
-
setId
public void setId(Long value)
-
left
public ItemMergeConfigurationType left(MergeStrategyType value)
-
right
public ItemMergeConfigurationType right(MergeStrategyType value)
-
valueExpression
public ItemMergeConfigurationType valueExpression(ExpressionType value)
-
beginValueExpression
public ExpressionType beginValueExpression()
-
id
public ItemMergeConfigurationType id(Long value)
-
clone
public ItemMergeConfigurationType clone()
-
-