Class ComponentSizeInformationType
- java.lang.Object
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.ComponentSizeInformationType
-
- All Implemented Interfaces:
Containerable
,DebugDumpable
,Serializable
,Cloneable
public class ComponentSizeInformationType extends Object implements Serializable, Cloneable, Containerable
Report on structured object size.Java class for ComponentSizeInformationType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ComponentSizeInformationType"> <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="size" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> <element name="secondarySize" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> <element name="component" type="{http://midpoint.evolveum.com/xml/ns/public/common/common-3}ComponentSizeInformationType" maxOccurs="unbounded" 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_COMPONENT
static ItemName
F_NAME
static ItemName
F_SECONDARY_SIZE
static ItemName
F_SIZE
-
Fields inherited from interface com.evolveum.midpoint.util.DebugDumpable
INDENT_STRING
-
-
Constructor Summary
Constructors Constructor Description ComponentSizeInformationType()
ComponentSizeInformationType(PrismContext prismContext)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PrismContainerValue
asPrismContainerValue()
ComponentSizeInformationType
beginComponent()
ComponentSizeInformationType
clone()
ComponentSizeInformationType
component(ComponentSizeInformationType value)
List<ComponentSizeInformationType>
createComponentList()
<X> X
end()
boolean
equals(Object object)
List<ComponentSizeInformationType>
getComponent()
Long
getId()
String
getName()
Integer
getSecondarySize()
Integer
getSize()
int
hashCode()
ComponentSizeInformationType
id(Long value)
ComponentSizeInformationType
name(String value)
ComponentSizeInformationType
secondarySize(Integer value)
void
setId(Long value)
void
setName(String value)
void
setSecondarySize(Integer value)
void
setSize(Integer value)
void
setupContainerValue(PrismContainerValue containerValue)
Setup value to the containerable representation.ComponentSizeInformationType
size(Integer value)
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
-
ComponentSizeInformationType
public ComponentSizeInformationType()
-
ComponentSizeInformationType
public ComponentSizeInformationType(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)
-
getSize
public Integer getSize()
-
setSize
public void setSize(Integer value)
-
getSecondarySize
public Integer getSecondarySize()
-
setSecondarySize
public void setSecondarySize(Integer value)
-
getComponent
public List<ComponentSizeInformationType> getComponent()
-
createComponentList
public List<ComponentSizeInformationType> createComponentList()
-
getId
public Long getId()
-
setId
public void setId(Long value)
-
name
public ComponentSizeInformationType name(String value)
-
size
public ComponentSizeInformationType size(Integer value)
-
secondarySize
public ComponentSizeInformationType secondarySize(Integer value)
-
component
public ComponentSizeInformationType component(ComponentSizeInformationType value)
-
beginComponent
public ComponentSizeInformationType beginComponent()
-
id
public ComponentSizeInformationType id(Long value)
-
clone
public ComponentSizeInformationType clone()
-
-