Class ActivityProgressType
- java.lang.Object
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.ActivityProgressType
-
- All Implemented Interfaces:
Containerable
,DebugDumpable
,Serializable
,Cloneable
public class ActivityProgressType extends Object implements Serializable, Cloneable, Containerable
Progress of an activity.Java class for ActivityProgressType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ActivityProgressType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="committed" type="{http://midpoint.evolveum.com/xml/ns/public/common/common-3}OutcomeKeyedCounterType" maxOccurs="unbounded" minOccurs="0"/> <element name="uncommitted" type="{http://midpoint.evolveum.com/xml/ns/public/common/common-3}OutcomeKeyedCounterType" maxOccurs="unbounded" minOccurs="0"/> <element name="expectedTotal" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> <element name="expectedInCurrentBucket" type="{http://www.w3.org/2001/XMLSchema}int" 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_COMMITTED
static ItemName
F_EXPECTED_IN_CURRENT_BUCKET
static ItemName
F_EXPECTED_TOTAL
static ItemName
F_UNCOMMITTED
-
Fields inherited from interface com.evolveum.midpoint.util.DebugDumpable
INDENT_STRING
-
-
Constructor Summary
Constructors Constructor Description ActivityProgressType()
ActivityProgressType(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_COMMITTED
public static final ItemName F_COMMITTED
-
F_UNCOMMITTED
public static final ItemName F_UNCOMMITTED
-
F_EXPECTED_TOTAL
public static final ItemName F_EXPECTED_TOTAL
-
F_EXPECTED_IN_CURRENT_BUCKET
public static final ItemName F_EXPECTED_IN_CURRENT_BUCKET
-
-
Constructor Detail
-
ActivityProgressType
public ActivityProgressType()
-
ActivityProgressType
public ActivityProgressType(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()
-
getCommitted
public List<OutcomeKeyedCounterType> getCommitted()
-
createCommittedList
public List<OutcomeKeyedCounterType> createCommittedList()
-
getUncommitted
public List<OutcomeKeyedCounterType> getUncommitted()
-
createUncommittedList
public List<OutcomeKeyedCounterType> createUncommittedList()
-
getExpectedTotal
public Integer getExpectedTotal()
-
setExpectedTotal
public void setExpectedTotal(Integer value)
-
getExpectedInCurrentBucket
public Integer getExpectedInCurrentBucket()
-
setExpectedInCurrentBucket
public void setExpectedInCurrentBucket(Integer value)
-
getId
public Long getId()
-
setId
public void setId(Long value)
-
committed
public ActivityProgressType committed(OutcomeKeyedCounterType value)
-
beginCommitted
public OutcomeKeyedCounterType beginCommitted()
-
uncommitted
public ActivityProgressType uncommitted(OutcomeKeyedCounterType value)
-
beginUncommitted
public OutcomeKeyedCounterType beginUncommitted()
-
expectedTotal
public ActivityProgressType expectedTotal(Integer value)
-
expectedInCurrentBucket
public ActivityProgressType expectedInCurrentBucket(Integer value)
-
id
public ActivityProgressType id(Long value)
-
clone
public ActivityProgressType clone()
-
-