Class ProcessedItemType
- java.lang.Object
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.ProcessedItemType
-
- All Implemented Interfaces:
Containerable
,DebugDumpable
,Serializable
,Cloneable
public class ProcessedItemType extends Object implements Serializable, Cloneable, Containerable
Describes an item (typically an object) that is or has been processed.Java class for ProcessedItemType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ProcessedItemType"> <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="displayName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="type" type="{http://www.w3.org/2001/XMLSchema}QName" minOccurs="0"/> <element name="oid" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="startTimestamp" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> <element name="endTimestamp" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/> <element name="message" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="operationId" 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_DISPLAY_NAME
static ItemName
F_END_TIMESTAMP
static ItemName
F_MESSAGE
static ItemName
F_NAME
static ItemName
F_OID
static ItemName
F_OPERATION_ID
static ItemName
F_START_TIMESTAMP
static ItemName
F_TYPE
-
Fields inherited from interface com.evolveum.midpoint.util.DebugDumpable
INDENT_STRING
-
-
Constructor Summary
Constructors Constructor Description ProcessedItemType()
ProcessedItemType(PrismContext prismContext)
-
Method Summary
-
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_NAME
public static final ItemName F_NAME
-
F_DISPLAY_NAME
public static final ItemName F_DISPLAY_NAME
-
F_TYPE
public static final ItemName F_TYPE
-
F_OID
public static final ItemName F_OID
-
F_START_TIMESTAMP
public static final ItemName F_START_TIMESTAMP
-
F_END_TIMESTAMP
public static final ItemName F_END_TIMESTAMP
-
F_MESSAGE
public static final ItemName F_MESSAGE
-
F_OPERATION_ID
public static final ItemName F_OPERATION_ID
-
-
Constructor Detail
-
ProcessedItemType
public ProcessedItemType()
-
ProcessedItemType
public ProcessedItemType(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)
-
getDisplayName
public String getDisplayName()
-
setDisplayName
public void setDisplayName(String value)
-
getType
public QName getType()
-
setType
public void setType(QName value)
-
getOid
public String getOid()
-
setOid
public void setOid(String value)
-
getStartTimestamp
public XMLGregorianCalendar getStartTimestamp()
-
setStartTimestamp
public void setStartTimestamp(XMLGregorianCalendar value)
-
getEndTimestamp
public XMLGregorianCalendar getEndTimestamp()
-
setEndTimestamp
public void setEndTimestamp(XMLGregorianCalendar value)
-
getMessage
public String getMessage()
-
setMessage
public void setMessage(String value)
-
getOperationId
public Long getOperationId()
-
setOperationId
public void setOperationId(Long value)
-
getId
public Long getId()
-
setId
public void setId(Long value)
-
name
public ProcessedItemType name(String value)
-
displayName
public ProcessedItemType displayName(String value)
-
type
public ProcessedItemType type(QName value)
-
oid
public ProcessedItemType oid(String value)
-
startTimestamp
public ProcessedItemType startTimestamp(XMLGregorianCalendar value)
-
startTimestamp
public ProcessedItemType startTimestamp(String value)
-
endTimestamp
public ProcessedItemType endTimestamp(XMLGregorianCalendar value)
-
endTimestamp
public ProcessedItemType endTimestamp(String value)
-
message
public ProcessedItemType message(String value)
-
operationId
public ProcessedItemType operationId(Long value)
-
id
public ProcessedItemType id(Long value)
-
clone
public ProcessedItemType clone()
-
-