Class CachingConfigurationType
- java.lang.Object
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.CachingConfigurationType
-
- All Implemented Interfaces:
Containerable
,DebugDumpable
,Serializable
,Cloneable
public class CachingConfigurationType extends Object implements Serializable, Cloneable, Containerable
Profiles for various kind of caching. Used to balance performance with the accuracy/timeliness of data.Java class for CachingConfigurationType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="CachingConfigurationType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="traceConfiguration" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> <element name="profile" type="{http://midpoint.evolveum.com/xml/ns/public/common/common-3}CachingProfileType" 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_PROFILE
static ItemName
F_TRACE_CONFIGURATION
-
Fields inherited from interface com.evolveum.midpoint.util.DebugDumpable
INDENT_STRING
-
-
Constructor Summary
Constructors Constructor Description CachingConfigurationType()
CachingConfigurationType(PrismContext prismContext)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PrismContainerValue
asPrismContainerValue()
CachingProfileType
beginProfile()
CachingConfigurationType
clone()
List<CachingProfileType>
createProfileList()
<X> X
end()
boolean
equals(Object object)
Long
getId()
List<CachingProfileType>
getProfile()
int
hashCode()
CachingConfigurationType
id(Long value)
Boolean
isTraceConfiguration()
CachingConfigurationType
profile(CachingProfileType value)
void
setId(Long value)
void
setTraceConfiguration(Boolean value)
void
setupContainerValue(PrismContainerValue containerValue)
Setup value to the containerable representation.String
toString()
CachingConfigurationType
traceConfiguration(Boolean 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
-
CachingConfigurationType
public CachingConfigurationType()
-
CachingConfigurationType
public CachingConfigurationType(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()
-
isTraceConfiguration
public Boolean isTraceConfiguration()
-
setTraceConfiguration
public void setTraceConfiguration(Boolean value)
-
getProfile
public List<CachingProfileType> getProfile()
-
createProfileList
public List<CachingProfileType> createProfileList()
-
getId
public Long getId()
-
setId
public void setId(Long value)
-
traceConfiguration
public CachingConfigurationType traceConfiguration(Boolean value)
-
profile
public CachingConfigurationType profile(CachingProfileType value)
-
beginProfile
public CachingProfileType beginProfile()
-
id
public CachingConfigurationType id(Long value)
-
clone
public CachingConfigurationType clone()
-
-