Class OperationMonitoringType
- java.lang.Object
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.OperationMonitoringType
-
- All Implemented Interfaces:
Containerable
,DebugDumpable
,Serializable
,Cloneable
public class OperationMonitoringType extends Object implements Serializable, Cloneable, Containerable
What monitored operations to trace.Java class for OperationMonitoringType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="OperationMonitoringType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="operation" type="{http://midpoint.evolveum.com/xml/ns/public/common/common-3}MonitoredOperationType" maxOccurs="unbounded" minOccurs="0"/> <element name="level" type="{http://midpoint.evolveum.com/xml/ns/public/common/common-3}OperationMonitoringLevelType" 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_LEVEL
static ItemName
F_OPERATION
-
Fields inherited from interface com.evolveum.midpoint.util.DebugDumpable
INDENT_STRING
-
-
Constructor Summary
Constructors Constructor Description OperationMonitoringType()
OperationMonitoringType(PrismContext prismContext)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PrismContainerValue
asPrismContainerValue()
OperationMonitoringType
clone()
List<MonitoredOperationType>
createOperationList()
<X> X
end()
boolean
equals(Object object)
Long
getId()
OperationMonitoringLevelType
getLevel()
List<MonitoredOperationType>
getOperation()
int
hashCode()
OperationMonitoringType
id(Long value)
OperationMonitoringType
level(OperationMonitoringLevelType value)
OperationMonitoringType
operation(MonitoredOperationType value)
void
setId(Long value)
void
setLevel(OperationMonitoringLevelType 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
-
OperationMonitoringType
public OperationMonitoringType()
-
OperationMonitoringType
public OperationMonitoringType(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()
-
getOperation
public List<MonitoredOperationType> getOperation()
-
createOperationList
public List<MonitoredOperationType> createOperationList()
-
getLevel
public OperationMonitoringLevelType getLevel()
-
setLevel
public void setLevel(OperationMonitoringLevelType value)
-
getId
public Long getId()
-
setId
public void setId(Long value)
-
operation
public OperationMonitoringType operation(MonitoredOperationType value)
-
level
public OperationMonitoringType level(OperationMonitoringLevelType value)
-
id
public OperationMonitoringType id(Long value)
-
clone
public OperationMonitoringType clone()
-
-