Package com.evolveum.midpoint.prism
Interface PrismContainerDefinition<C extends Containerable>
-
- All Superinterfaces:
Cloneable
,DebugDumpable
,Definition
,Freezable
,ItemDefinition<PrismContainer<C>>
,LocalItemDefinitionStore
,PrismContextSensitive
,PrismItemAccessDefinition
,Revivable
,Serializable
,SmartVisitable<Definition>
,Visitable<Definition>
- All Known Subinterfaces:
AttributeContainerDefinitionDelegator
,ContainerDefinitionDelegator<C>
,MutablePrismContainerDefinition<C>
,MutablePrismObjectDefinition<O>
,ObjectDefinitionDelegator<O>
,PartiallyMutableItemDefinition.Container<C>
,PrismContainerWrapper<C>
,PrismObjectDefinition<O>
,PrismObjectWrapper<O>
,ResourceAttributeContainerDefinition
,ShadowWrapper
- All Known Implementing Classes:
CaseWorkItemTypeWrapper
,DummyPrismObjectDefinition
,PrismContainerDefinitionImpl
,PrismContainerWrapperImpl
,PrismObjectDefinitionImpl
,PrismObjectWrapperImpl
,ProfilingClassLoggerContainerWrapperImpl
,ResourceAttributeContainerDefinitionImpl
,ResourceAttributeMappingWrapper
,ResourceWrapper
,ShadowAssociationWrapperImpl
,ShadowWrapperImpl
,TransformableContainerDefinition
,TransformableContainerDefinition.AttributeContainer
,TransformableObjectDefinition
,ValueMetadataWrapperImpl
public interface PrismContainerDefinition<C extends Containerable> extends ItemDefinition<PrismContainer<C>>, LocalItemDefinitionStore
Definition of a prism container. Note: a lot is delegated to aComplexTypeDefinition
.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.evolveum.midpoint.prism.PrismItemAccessDefinition
PrismItemAccessDefinition.Mutable
-
-
Field Summary
-
Fields inherited from interface com.evolveum.midpoint.util.DebugDumpable
INDENT_STRING
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description boolean
canRepresent(@NotNull QName type)
TODO@NotNull PrismContainerDefinition<C>
clone()
PrismContainerDefinition<C>
cloneWithReplacedDefinition(QName itemName, ItemDefinition<?> newDefinition)
TODO@NotNull ContainerDelta<C>
createEmptyDelta(ItemPath path)
Creates an empty delta (with appropriate implementation class), pointing to this item definition, with a given path.PrismContainerValue<C>
createValue()
TODOClass<C>
getCompileTimeClass()
Static (compile-time) class holding the container values.ComplexTypeDefinition
getComplexTypeDefinition()
Definition of the container values.@NotNull List<? extends ItemDefinition<?>>
getDefinitions()
Returns a list of item definitions in this container.default Collection<ItemName>
getItemNames()
Returns names of items that are defined within this container definition.List<PrismPropertyDefinition<?>>
getPropertyDefinitions()
Returns set of property definitions.Class<C>
getTypeClass()
Returns a compile-time class that is used to represent items.default boolean
isCompletelyDefined()
Returns true if the instantiated container can contain only items that are explicitly defined here.boolean
isEmpty()
TODOvoid
replaceDefinition(QName itemName, ItemDefinition<?> newDefinition)
TODOdefault Optional<ComplexTypeDefinition>
structuredType()
Returns complex type definition of item, if underlying value is possible structured.MutablePrismContainerDefinition<C>
toMutable()
Returns an interface to mutate this definition.-
Methods inherited from interface com.evolveum.midpoint.util.DebugDumpable
debugDump, debugDump, debugDumpLazily, debugDumpLazily
-
Methods inherited from interface com.evolveum.midpoint.prism.Definition
debugDump, getAnnotation, getAnnotations, getDeprecatedSince, getDiagrams, getDisplayName, getDisplayOrder, getDocumentation, getDocumentationPreview, getHelp, getMutabilityFlag, getPlannedRemoval, getProcessing, getSchemaMigrations, getSchemaRegistry, getTypeName, isAbstract, isDeprecated, isElaborate, isEmphasized, isExperimental, isIgnored, isRuntimeSchema, setAnnotation
-
Methods inherited from interface com.evolveum.midpoint.prism.Freezable
checkImmutable, checkMutable, freeze, isImmutable
-
Methods inherited from interface com.evolveum.midpoint.prism.ItemDefinition
adoptElementDefinitionFrom, canBeDefinitionOf, canBeDefinitionOf, debugDumpShortToString, deepClone, findItemDefinition, getItemName, getMaxOccurs, getMinOccurs, getSubstitutionHead, getValueEnumerationRef, instantiate, instantiate, isDynamic, isHeterogeneousListItem, isIndexOnly, isInherited, isMandatory, isMultiValue, isOperational, isOptional, isSingleValue, isValidFor
-
Methods inherited from interface com.evolveum.midpoint.prism.LocalItemDefinitionStore
containsItemDefinition, findContainerDefinition, findItemDefinition, findItemDefinition, findLocalItemDefinition, findLocalItemDefinition, findPropertyDefinition, findReferenceDefinition
-
Methods inherited from interface com.evolveum.midpoint.prism.PrismContextSensitive
getPrismContext
-
Methods inherited from interface com.evolveum.midpoint.prism.PrismItemAccessDefinition
canAdd, canModify, canRead
-
Methods inherited from interface com.evolveum.midpoint.prism.SmartVisitable
accept
-
-
-
-
Method Detail
-
getCompileTimeClass
Class<C> getCompileTimeClass()
Static (compile-time) class holding the container values. May be null. (Let's not mark it as @Nullable to avoid lots of warnings.)
-
getComplexTypeDefinition
ComplexTypeDefinition getComplexTypeDefinition()
Definition of the container values. May be null. (Let's not mark it as @Nullable to avoid lots of warnings.) Note that individual values can hold their own (more specific) complex type definitions.
-
getDefinitions
@NotNull @NotNull List<? extends ItemDefinition<?>> getDefinitions()
Returns a list of item definitions in this container. It is intentionally aList
because it is ordered. (To provide standard format for serialization.) Usually obtained fromComplexTypeDefinition
. So please do not modify the content of the list!- Specified by:
getDefinitions
in interfaceLocalItemDefinitionStore
-
getItemNames
default Collection<ItemName> getItemNames()
Returns names of items that are defined within this container definition. They do NOT include items that can be put into instantiated container by means of "xsd:any" mechanism.
-
isCompletelyDefined
default boolean isCompletelyDefined()
Returns true if the instantiated container can contain only items that are explicitly defined here.
-
getPropertyDefinitions
List<PrismPropertyDefinition<?>> getPropertyDefinitions()
Returns set of property definitions. The set contains all property definitions of all types that were parsed. Order of definitions is insignificant. The returned set is immutable! All changes may be lost.- Returns:
- set of definitions
-
createEmptyDelta
@NotNull @NotNull ContainerDelta<C> createEmptyDelta(ItemPath path)
Description copied from interface:ItemDefinition
Creates an empty delta (with appropriate implementation class), pointing to this item definition, with a given path.- Specified by:
createEmptyDelta
in interfaceItemDefinition<C extends Containerable>
-
clone
@NotNull @NotNull PrismContainerDefinition<C> clone()
- Specified by:
clone
in interfaceDefinition
- Specified by:
clone
in interfaceItemDefinition<C extends Containerable>
-
cloneWithReplacedDefinition
PrismContainerDefinition<C> cloneWithReplacedDefinition(QName itemName, ItemDefinition<?> newDefinition)
TODO
-
replaceDefinition
void replaceDefinition(QName itemName, ItemDefinition<?> newDefinition)
TODO
-
createValue
PrismContainerValue<C> createValue()
TODO
-
isEmpty
boolean isEmpty()
TODO
-
canRepresent
boolean canRepresent(@NotNull @NotNull QName type)
TODO
-
toMutable
MutablePrismContainerDefinition<C> toMutable()
Description copied from interface:Definition
Returns an interface to mutate this definition.- Specified by:
toMutable
in interfaceDefinition
- Specified by:
toMutable
in interfaceItemDefinition<C extends Containerable>
-
getTypeClass
Class<C> getTypeClass()
Description copied from interface:Definition
Returns a compile-time class that is used to represent items. E.g. returns String, Integer, subclasses of Objectable and Containerable and so on.- Specified by:
getTypeClass
in interfaceDefinition
-
structuredType
default Optional<ComplexTypeDefinition> structuredType()
Description copied from interface:ItemDefinition
Returns complex type definition of item, if underlying value is possible structured. NOTE: This seems weird, since properties and references are simple values, but actually object reference is serialized as structured value and some of properties are also.- Specified by:
structuredType
in interfaceItemDefinition<C extends Containerable>
-
-