Package com.evolveum.midpoint.prism
Interface ComplexTypeDefinition
- All Superinterfaces:
AbstractTypeDefinition
,Cloneable
,DebugDumpable
,Definition
,Freezable
,LocalItemDefinitionStore
,PrismLifecycleDefinition
,PrismPresentationDefinition
,Revivable
,SchemaLookup.Aware
,Serializable
,SmartVisitable<Definition>
,TypeDefinition
,Visitable<Definition>
- All Known Subinterfaces:
ComplexTypeDefinitionDelegator
,ShadowAssociationsComplexTypeDefinition
,ShadowAttributesComplexTypeDefinition
,ShadowItemsComplexTypeDefinition
- All Known Implementing Classes:
ComplexTypeDefinitionImpl
,TransformableComplexTypeDefinition
Provides a definition for a complex type, i.e. type that prescribes inner items.
It's instances may be container values or property values, depending on container/object
markers presence.
- Author:
- semancik
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic interface
Accepts information about this complex type definition during schema parsing.static interface
An interface to mutate the definition of a complex type.static interface
Provides the functionality formigrateIfNeeded(PrismContainerValue)
.Nested classes/interfaces inherited from interface com.evolveum.midpoint.prism.Definition
Definition.DefinitionBuilder, Definition.DefinitionMutator
Nested classes/interfaces inherited from interface com.evolveum.midpoint.prism.PrismLifecycleDefinition
PrismLifecycleDefinition.Data, PrismLifecycleDefinition.Delegable, PrismLifecycleDefinition.Mutable
Nested classes/interfaces inherited from interface com.evolveum.midpoint.prism.PrismPresentationDefinition
PrismPresentationDefinition.Data, PrismPresentationDefinition.Delegable, PrismPresentationDefinition.Mutable
Nested classes/interfaces inherited from interface com.evolveum.midpoint.prism.TypeDefinition
TypeDefinition.TypeDefinitionLikeBuilder, TypeDefinition.TypeDefinitionMutator
-
Field Summary
Fields inherited from interface com.evolveum.midpoint.util.DebugDumpable
INDENT_STRING
-
Method Summary
Modifier and TypeMethodDescription@NotNull ComplexTypeDefinition
clone()
Does a shallow clone of this definition (i.e.@NotNull ComplexTypeDefinition
deepClone
(@NotNull DeepCloneOperation operation) Does a deep clone of this definition.@Nullable QName
Type name for items that are not explicitly defined in this CTD.@Nullable String
When resolving unqualified names for items contained in this CTD, what should be the default namespace to look into at first.@Nullable QName
Default target type name for references typed usinggetDefaultItemTypeName()
set to "reference type".@NotNull List<? extends ItemDefinition<?>>
Returns definitions for all inner items.@Nullable QName
If not null, indicates that this type defines the structure of `extension` element of a given type.When resolving unqualified names for items contained in this CTD, what namespace(s) should be ignored.default List<PrismPropertyDefinition<?>>
default List<PrismPropertyDefinition<?>>
default boolean
boolean
default boolean
hasSubstitutions
(QName qName) Returns true if item has substitutions in current container definitionboolean
Flag indicating whether this type was marked as "container" in the original schema.boolean
isEmpty()
Returns true if there are no item definitions.default boolean
isItemDefinitionRemoved
(QName itemName) This allows to distinguish between missing and explicitly removed definitions.boolean
True if the complex type definition is a type dedicated to hold so-called https://docs.evolveum.com/midpoint/devel/design/xml-json-yaml-vs-xnode-vs-internal-data/heterogeneous-lists/[heterogeneous lists].boolean
Flag indicating whether this type was marked as "object" in the original schema.boolean
Flag indicating whether this type was marked as "objectReference" in the original schema.default boolean
boolean
True if the complex type definition contains xsd:any (directly or indirectly).default Optional<ItemDefinition<?>>
itemOrSubstitution
(QName name) void
merge
(ComplexTypeDefinition otherComplexTypeDef) Copies cloned definitions from the other type definition into this one.default <C extends Containerable>
@NotNull PrismContainerValue<C>migrateIfNeeded
(@NotNull PrismContainerValue<C> value) A hook to migrate the value after this definition was applied to it.mutator()
Returns an interface to mutate this definition.substitution
(QName name) void
trimTo
(@NotNull Collection<ItemPath> paths) Trims the definition (and any definitions it refers to) to contain only items related to given paths.Methods inherited from interface com.evolveum.midpoint.prism.AbstractTypeDefinition
getTypeName
Methods inherited from interface com.evolveum.midpoint.util.DebugDumpable
debugDump, debugDump, debugDumpLazily, debugDumpLazily
Methods inherited from interface com.evolveum.midpoint.prism.Definition
checkMutableOnExposing, debugDump, getAnnotation, getAnnotations, getMergerIdentifier, getMergerInstance, getMutabilityFlag, getNaturalKeyConstituents, getNaturalKeyInstance, getSchemaContextDefinition, getTypeClass, getTypeName, isAbstract, isElaborate, isOptionalCleanup, isRuntimeSchema
Methods inherited from interface com.evolveum.midpoint.prism.Freezable
checkImmutable, checkMutable, freeze, isImmutable
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.PrismLifecycleDefinition
getDeprecatedSince, getPlannedRemoval, getRemovedSince, getSchemaMigrations, isDeprecated, isExperimental, isRemoved
Methods inherited from interface com.evolveum.midpoint.prism.PrismPresentationDefinition
getDiagrams, getDisplayHint, getDisplayName, getDisplayOrder, getDocumentation, getDocumentationPreview, getHelp, isEmphasized
Methods inherited from interface com.evolveum.midpoint.prism.schema.SchemaLookup.Aware
schemaLookup
Methods inherited from interface com.evolveum.midpoint.prism.SmartVisitable
accept
Methods inherited from interface com.evolveum.midpoint.prism.TypeDefinition
canRepresent, getCompileTimeClass, getInstantiationOrder, getStaticSubTypes, getSuperType, isAssignableFrom
-
Method Details
-
getDefinitions
Returns definitions for all inner items. These are of typeItemDefinition
. However, very often subtypes of this type are used, e.g. ResourceAttributeDefinition, RefinedAttributeDefinition, LayerRefinedAttributeDefinition, and so on. The returned structure is aList
because the ordering is significant, e.g. for serialization purposes. The list is unmodifiable.- Specified by:
getDefinitions
in interfaceLocalItemDefinitionStore
-
getExtensionForType
If not null, indicates that this type defines the structure of `extension` element of a given type. E.g. `getExtensionForType()` == `c:UserType` means that this complex type defines structure of `extension` elements of `UserType` objects. -
isReferenceMarker
boolean isReferenceMarker()Flag indicating whether this type was marked as "objectReference" in the original schema. -
isContainerMarker
boolean isContainerMarker()Flag indicating whether this type was marked as "container" in the original schema. Does not provide any information to schema processing logic, just conveys the marker from original schema so we can serialize and deserialize the schema without loss of information. -
isObjectMarker
boolean isObjectMarker()Flag indicating whether this type was marked as "object" in the original schema. Does not provide any information to schema processing logic, just conveys the marker from original schema so we can serialized and deserialize the schema without loss of information. -
isXsdAnyMarker
boolean isXsdAnyMarker()True if the complex type definition contains xsd:any (directly or indirectly). -
isListMarker
True if the complex type definition is a type dedicated to hold so-called https://docs.evolveum.com/midpoint/devel/design/xml-json-yaml-vs-xnode-vs-internal-data/heterogeneous-lists/[heterogeneous lists]. See alsoDOMUtil.IS_LIST_ATTRIBUTE_NAME
andItemDefinition.isHeterogeneousListItem()
. -
getDefaultItemTypeName
Type name for items that are not explicitly defined in this CTD. -
getDefaultReferenceTargetTypeName
Default target type name for references typed usinggetDefaultItemTypeName()
set to "reference type". -
getDefaultNamespace
When resolving unqualified names for items contained in this CTD, what should be the default namespace to look into at first. Currently does NOT apply recursively (to inner CTDs). Set by parsing `defaultNamespace` XSD annotation. -
getIgnoredNamespaces
When resolving unqualified names for items contained in this CTD, what namespace(s) should be ignored. Names in this list are interpreted as a namespace prefixes. Currently does NOT apply recursively (to inner CTDs). Set by parsing `ignoredNamespace` XSD annotations. -
merge
Copies cloned definitions from the other type definition into this one. (TODO remove from the interface?) -
isEmpty
boolean isEmpty()Returns true if there are no item definitions. -
clone
Does a shallow clone of this definition (i.e. item definitions themselves are NOT cloned).- Specified by:
clone
in interfaceDefinition
-
deepClone
Does a deep clone of this definition. -
trimTo
Trims the definition (and any definitions it refers to) to contain only items related to given paths. USE WITH CARE. Be sure no shared definitions would be affected by this operation! -
hasSubstitutions
-
hasSubstitutions
Returns true if item has substitutions in current container definition -
substitution
-
itemOrSubstitution
-
mutator
Description copied from interface:Definition
Returns an interface to mutate this definition.- Specified by:
mutator
in interfaceDefinition
-
getXmlAttributeDefinitions
-
isStrictAnyMarker
-
isItemDefinitionRemoved
This allows to distinguish between missing and explicitly removed definitions. -
hasOperationalOnlyItems
-
getPropertyDefinitions
-
migrateIfNeeded
@Experimental @NotNull default <C extends Containerable> @NotNull PrismContainerValue<C> migrateIfNeeded(@NotNull @NotNull PrismContainerValue<C> value) A hook to migrate the value after this definition was applied to it. Similar toPrismReferenceDefinition.migrateIfNeeded(PrismReferenceValue)
with the difference that the implementation for references is simpler. See the discussion in the default implementation.
-