Class LensContextSequenceValueType
- java.lang.Object
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.LensContextSequenceValueType
-
- All Implemented Interfaces:
Containerable
,DebugDumpable
,Serializable
,Cloneable
public class LensContextSequenceValueType extends Object implements Serializable, Cloneable, Containerable
Value of a sequence used in the computation.Java class for LensContextSequenceValueType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="LensContextSequenceValueType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="sequenceRef" type="{http://midpoint.evolveum.com/xml/ns/public/common/common-3}ObjectReferenceType" minOccurs="0"/> <element name="value" type="{http://www.w3.org/2001/XMLSchema}long" 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_SEQUENCE_REF
static ItemName
F_VALUE
-
Fields inherited from interface com.evolveum.midpoint.util.DebugDumpable
INDENT_STRING
-
-
Constructor Summary
Constructors Constructor Description LensContextSequenceValueType()
LensContextSequenceValueType(PrismContext prismContext)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PrismContainerValue
asPrismContainerValue()
ObjectReferenceType
beginSequenceRef()
LensContextSequenceValueType
clone()
<X> X
end()
boolean
equals(Object object)
Long
getId()
ObjectReferenceType
getSequenceRef()
Long
getValue()
int
hashCode()
LensContextSequenceValueType
id(Long value)
LensContextSequenceValueType
sequenceRef(ObjectReferenceType value)
LensContextSequenceValueType
sequenceRef(String oid, QName type)
LensContextSequenceValueType
sequenceRef(String oid, QName type, QName relation)
void
setId(Long value)
void
setSequenceRef(ObjectReferenceType value)
void
setupContainerValue(PrismContainerValue containerValue)
Setup value to the containerable representation.void
setValue(Long value)
String
toString()
LensContextSequenceValueType
value(Long 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
-
LensContextSequenceValueType
public LensContextSequenceValueType()
-
LensContextSequenceValueType
public LensContextSequenceValueType(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()
-
getSequenceRef
public ObjectReferenceType getSequenceRef()
-
setSequenceRef
public void setSequenceRef(ObjectReferenceType value)
-
getValue
public Long getValue()
-
setValue
public void setValue(Long value)
-
getId
public Long getId()
-
setId
public void setId(Long value)
-
sequenceRef
public LensContextSequenceValueType sequenceRef(ObjectReferenceType value)
-
sequenceRef
public LensContextSequenceValueType sequenceRef(String oid, QName type)
-
sequenceRef
public LensContextSequenceValueType sequenceRef(String oid, QName type, QName relation)
-
beginSequenceRef
public ObjectReferenceType beginSequenceRef()
-
value
public LensContextSequenceValueType value(Long value)
-
id
public LensContextSequenceValueType id(Long value)
-
clone
public LensContextSequenceValueType clone()
-
-