Class PrismConfigurationType
- java.lang.Object
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.PrismConfigurationType
-
- All Implemented Interfaces:
Containerable
,DebugDumpable
,Serializable
,Cloneable
public class PrismConfigurationType extends Object implements Serializable, Cloneable, Containerable
Prism specific configuration, mainly for performance optimizations and tunningJava class for PrismConfigurationType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="PrismConfigurationType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="useSerializationProxies" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> <element name="indexPropertyValues" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> <element name="propertyValuesIndexThreshold" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static QName
COMPLEX_TYPE
static ItemName
F_INDEX_PROPERTY_VALUES
static ItemName
F_PROPERTY_VALUES_INDEX_THRESHOLD
static ItemName
F_USE_SERIALIZATION_PROXIES
-
Fields inherited from interface com.evolveum.midpoint.util.DebugDumpable
INDENT_STRING
-
-
Constructor Summary
Constructors Constructor Description PrismConfigurationType()
PrismConfigurationType(PrismContext prismContext)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PrismContainerValue
asPrismContainerValue()
PrismConfigurationType
clone()
<X> X
end()
boolean
equals(Object object)
Integer
getPropertyValuesIndexThreshold()
int
hashCode()
PrismConfigurationType
indexPropertyValues(Boolean value)
Boolean
isIndexPropertyValues()
Boolean
isUseSerializationProxies()
PrismConfigurationType
propertyValuesIndexThreshold(Integer value)
void
setIndexPropertyValues(Boolean value)
void
setPropertyValuesIndexThreshold(Integer value)
void
setupContainerValue(PrismContainerValue containerValue)
Setup value to the containerable representation.void
setUseSerializationProxies(Boolean value)
String
toString()
PrismConfigurationType
useSerializationProxies(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
-
-
-
-
Field Detail
-
COMPLEX_TYPE
public static final QName COMPLEX_TYPE
-
F_USE_SERIALIZATION_PROXIES
public static final ItemName F_USE_SERIALIZATION_PROXIES
-
F_INDEX_PROPERTY_VALUES
public static final ItemName F_INDEX_PROPERTY_VALUES
-
F_PROPERTY_VALUES_INDEX_THRESHOLD
public static final ItemName F_PROPERTY_VALUES_INDEX_THRESHOLD
-
-
Constructor Detail
-
PrismConfigurationType
public PrismConfigurationType()
-
PrismConfigurationType
public PrismConfigurationType(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()
-
isUseSerializationProxies
public Boolean isUseSerializationProxies()
-
setUseSerializationProxies
public void setUseSerializationProxies(Boolean value)
-
isIndexPropertyValues
public Boolean isIndexPropertyValues()
-
setIndexPropertyValues
public void setIndexPropertyValues(Boolean value)
-
getPropertyValuesIndexThreshold
public Integer getPropertyValuesIndexThreshold()
-
setPropertyValuesIndexThreshold
public void setPropertyValuesIndexThreshold(Integer value)
-
useSerializationProxies
public PrismConfigurationType useSerializationProxies(Boolean value)
-
indexPropertyValues
public PrismConfigurationType indexPropertyValues(Boolean value)
-
propertyValuesIndexThreshold
public PrismConfigurationType propertyValuesIndexThreshold(Integer value)
-
clone
public PrismConfigurationType clone()
-
-