Interface ItemDefinitionDelegator<I extends Item<?,?>>
- All Superinterfaces:
Cloneable,DebugDumpable,Definition,DefinitionDelegator,Freezable,ItemDefinition<I>,PrismContextSensitive,PrismItemAccessDefinition,Revivable,Serializable,SmartVisitable<Definition>,Visitable<Definition>
- All Known Subinterfaces:
AttributeContainerDefinitionDelegator,AttributeDefinitionDelegator<T>,ContainerDefinitionDelegator<C>,ObjectDefinitionDelegator<O>,PropertyDefinitionDelegator<T>,ReferenceDefinitionDelegator,RefinedAttributeDefinitionDelegator<T>
- All Known Implementing Classes:
ResourceAttributeDefinitionImpl,TransformableContainerDefinition,TransformableContainerDefinition.AttributeContainer,TransformableItemDefinition,TransformableObjectDefinition,TransformablePropertyDefinition,TransformablePropertyDefinition.RefinedAttribute,TransformablePropertyDefinition.ResourceAttribute,TransformableReferenceDefinition
public interface ItemDefinitionDelegator<I extends Item<?,?>>
extends DefinitionDelegator, ItemDefinition<I>
-
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
Modifier and TypeMethodDescriptiondefault voidadoptElementDefinitionFrom(ItemDefinition<?> otherDef) Transfers selected parts of the definition (currently item name, min/max occurs) from another definition.default booleancanAdd()Returns true if this item can be added: it can be part of an object that is created.default booleancanBeDefinitionOf(PrismValue pvalue) TODO documentdefault booleancanBeDefinitionOf(I item) TODO documentdefault booleanReturns true if this item can be modified (updated).default booleancanRead()Returns true if this item can be read (displayed).default @NotNull ItemDelta<?,?> createEmptyDelta(ItemPath path) Creates an empty delta (with appropriate implementation class), pointing to this item definition, with a given path.default voidUsed in debugDumping items.default ItemDefinition<I>deepClone(@NotNull DeepCloneOperation operation) TODO documentdelegate()default <T extends ItemDefinition<?>>
TfindItemDefinition(@NotNull ItemPath path, @NotNull Class<T> clazz) Used to find a matching item definition _within_ this definition.default List<ItemDiagramSpecification>default @NotNull ItemNameGets the "canonical" name of the item for the definition.default intReturn the number of maximal value occurrences.default intReturn the number of minimal value occurrences.default QNameReturns the name of an element this one can be substituted for (e.g.default PrismReferenceValueReference to an object that directly or indirectly represents possible values for this item.default ICreate an item instance.default Iinstantiate(QName name) Create an item instance.default booleanReturns true if definition was created during the runtime based on a dynamic information such as xsi:type attributes in XML.default booleanCan be used in heterogeneous lists as a list item.default booleanIf true, this item is not stored in XML representation in repo.default booleanWhether the item is inherited from a supertype.default booleanMarks operational item.default booleanReturns true if item definition is searchable.default booleanisValidFor(@NotNull QName elementQName, @NotNull Class<? extends ItemDefinition<?>> clazz, boolean caseInsensitive) Returns true if this definition is valid for given element name and definition class, in either case-sensitive (the default) or case-insensitive way.default Optional<ComplexTypeDefinition>Returns complex type definition of item, if underlying value is possible structured.Methods inherited from interface com.evolveum.midpoint.prism.deleg.DefinitionDelegator
accept, accept, debugDump, debugDump, debugDump, debugDumpLazily, debugDumpLazily, getAnnotation, getAnnotations, getDeprecatedSince, getDisplayName, getDisplayOrder, getDocumentation, getDocumentationPreview, getHelp, getMutabilityFlag, getPlannedRemoval, getPrismContext, getProcessing, getRemovedSince, getSchemaMigrations, getSchemaRegistry, getTypeClass, getTypeName, isAbstract, isDeprecated, isElaborate, isEmphasized, isExperimental, isIgnored, isRemoved, isRuntimeSchema, setAnnotationMethods inherited from interface com.evolveum.midpoint.prism.Freezable
checkImmutable, checkMutable, freeze, isImmutableMethods inherited from interface com.evolveum.midpoint.prism.ItemDefinition
clone, isMandatory, isMultiValue, isOptional, isSingleValue, toMutable
-
Method Details
-
delegate
ItemDefinition<I> delegate()- Specified by:
delegatein interfaceDefinitionDelegator
-
canRead
default boolean canRead()Description copied from interface:PrismItemAccessDefinitionReturns true if this item can be read (displayed). In case of containers this flag is, strictly speaking, not applicable. Container is an empty shell. What matters is access to individual sub-item. However, for containers this value has a "hint" meaning. It means that the container itself contains something that is readable. Which can be used as a hint by the presentation to display container label or block. This usually happens if the container contains at least one readable item. This does NOT mean that also all the container items can be displayed. The sub-item permissions are controlled by similar properties on the items. This property only applies to the container itself: the "shell" of the container.Note: It was considered to use a different meaning for this flag - a meaning that would allow canRead()=false containers to have readable items. However, this was found not to be very useful. Therefore the "something readable inside" meaning was confirmed instead.
- Specified by:
canReadin interfacePrismItemAccessDefinition
-
getItemName
Description copied from interface:ItemDefinitionGets the "canonical" name of the item for the definition. Should be qualified, if at all possible.- Specified by:
getItemNamein interfaceItemDefinition<I extends Item<?,?>>
-
getMinOccurs
default int getMinOccurs()Description copied from interface:ItemDefinitionReturn the number of minimal value occurrences.- Specified by:
getMinOccursin interfaceItemDefinition<I extends Item<?,?>>
-
getMaxOccurs
default int getMaxOccurs()Description copied from interface:ItemDefinitionReturn the number of maximal value occurrences. Any negative number means "unbounded".- Specified by:
getMaxOccursin interfaceItemDefinition<I extends Item<?,?>>
-
isOperational
default boolean isOperational()Description copied from interface:ItemDefinitionMarks operational item. Operational properties are auxiliary data (or meta-data) that are usually not modifiable by the end user. They are generated and maintained by the system. Operational items are also not usually displayed unless it is explicitly requested. The example of operational items are modification timestamps, create timestamps, user that made the last change, etc. They are also treated in a special way when comparing values. SeeParameterizedEquivalenceStrategy.- Specified by:
isOperationalin interfaceItemDefinition<I extends Item<?,?>>
-
isIndexOnly
default boolean isIndexOnly()Description copied from interface:ItemDefinitionIf true, this item is not stored in XML representation in repo. TODO better name- Specified by:
isIndexOnlyin interfaceItemDefinition<I extends Item<?,?>>
-
canModify
default boolean canModify()Description copied from interface:PrismItemAccessDefinitionReturns true if this item can be modified (updated). In case of containers this means that the container itself should be displayed in modification forms E.g. that the container label or block should be displayed. This usually happens if the container contains at least one modifiable item. This does NOT mean that also all the container items can be modified. The sub-item permissions are controlled by similar properties on the items. This property only applies to the container itself: the "shell" of the container.- Specified by:
canModifyin interfacePrismItemAccessDefinition
-
isInherited
default boolean isInherited()Description copied from interface:ItemDefinitionWhether the item is inherited from a supertype.- Specified by:
isInheritedin interfaceItemDefinition<I extends Item<?,?>>
-
isDynamic
default boolean isDynamic()Description copied from interface:ItemDefinitionReturns true if definition was created during the runtime based on a dynamic information such as xsi:type attributes in XML. This means that the definition needs to be stored alongside the data to have a successful serialization "roundtrip". The definition is not part of any schema and therefore cannot be determined. It may even be different for every instance of the associated item (element name).- Specified by:
isDynamicin interfaceItemDefinition<I extends Item<?,?>>
-
canAdd
default boolean canAdd()Description copied from interface:PrismItemAccessDefinitionReturns true if this item can be added: it can be part of an object that is created. In case of containers this means that the container itself should be displayed in creation forms E.g. that the container label or block should be displayed. This usually happens if the container contains at least one createable item. This does NOT mean that also all the container items can be created. The sub-item permissions are controlled by similar properties on the items. This property only applies to the container itself: the "shell" of the container.- Specified by:
canAddin interfacePrismItemAccessDefinition
-
getDiagrams
- Specified by:
getDiagramsin interfaceDefinition
-
getSubstitutionHead
Description copied from interface:ItemDefinitionReturns the name of an element this one can be substituted for (e.g. c:user -> c:object, s:pipeline -> s:expression, etc). EXPERIMENTAL- Specified by:
getSubstitutionHeadin interfaceItemDefinition<I extends Item<?,?>>
-
isHeterogeneousListItem
default boolean isHeterogeneousListItem()Description copied from interface:ItemDefinitionCan be used in heterogeneous lists as a list item. EXPERIMENTAL.- Specified by:
isHeterogeneousListItemin interfaceItemDefinition<I extends Item<?,?>>
-
getValueEnumerationRef
Description copied from interface:ItemDefinitionReference to an object that directly or indirectly represents possible values for this item. We do not define here what exactly the object has to be. It can be a lookup table, script that dynamically produces the values or anything similar. The object must produce the values of the correct type for this item otherwise an error occurs.- Specified by:
getValueEnumerationRefin interfaceItemDefinition<I extends Item<?,?>>
-
isValidFor
default boolean isValidFor(@NotNull @NotNull QName elementQName, @NotNull @NotNull Class<? extends ItemDefinition<?>> clazz, boolean caseInsensitive) Description copied from interface:ItemDefinitionReturns true if this definition is valid for given element name and definition class, in either case-sensitive (the default) or case-insensitive way. Used e.g. for "slow" path lookup where we iterate over all definitions in a complex type.- Specified by:
isValidForin interfaceItemDefinition<I extends Item<?,?>>
-
adoptElementDefinitionFrom
Description copied from interface:ItemDefinitionTransfers selected parts of the definition (currently item name, min/max occurs) from another definition. TODO used only on few places, consider removing- Specified by:
adoptElementDefinitionFromin interfaceItemDefinition<I extends Item<?,?>>
-
instantiate
Description copied from interface:ItemDefinitionCreate an item instance. Definition name or default name will be used as an element name for the instance. The instance will otherwise be empty.- Specified by:
instantiatein interfaceItemDefinition<I extends Item<?,?>> - Throws:
SchemaException
-
instantiate
Description copied from interface:ItemDefinitionCreate an item instance. Definition name will use provided name. for the instance. The instance will otherwise be empty.- Specified by:
instantiatein interfaceItemDefinition<I extends Item<?,?>> - Throws:
SchemaException
-
findItemDefinition
default <T extends ItemDefinition<?>> T findItemDefinition(@NotNull @NotNull ItemPath path, @NotNull @NotNull Class<T> clazz) Description copied from interface:ItemDefinitionUsed to find a matching item definition _within_ this definition. Treats e.g. de-referencing in prism references.- Specified by:
findItemDefinitionin interfaceItemDefinition<I extends Item<?,?>>
-
createEmptyDelta
Description copied from interface:ItemDefinitionCreates an empty delta (with appropriate implementation class), pointing to this item definition, with a given path.- Specified by:
createEmptyDeltain interfaceItemDefinition<I extends Item<?,?>>
-
deepClone
Description copied from interface:ItemDefinitionTODO document- Specified by:
deepClonein interfaceItemDefinition<I extends Item<?,?>>
-
debugDumpShortToString
Description copied from interface:ItemDefinitionUsed in debugDumping items. Does not need to have name in it as item already has it. Does not need to have class as that is just too much info that is almost anytime pretty obvious anyway.- Specified by:
debugDumpShortToStringin interfaceItemDefinition<I extends Item<?,?>>
-
canBeDefinitionOf
Description copied from interface:ItemDefinitionTODO document- Specified by:
canBeDefinitionOfin interfaceItemDefinition<I extends Item<?,?>>
-
canBeDefinitionOf
Description copied from interface:ItemDefinitionTODO document- Specified by:
canBeDefinitionOfin interfaceItemDefinition<I extends Item<?,?>>
-
structuredType
Description copied from interface:ItemDefinitionReturns 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:
structuredTypein interfaceItemDefinition<I extends Item<?,?>>
-
isSearchable
default boolean isSearchable()Description copied from interface:ItemDefinitionReturns true if item definition is searchable.- Specified by:
isSearchablein interfaceItemDefinition<I extends Item<?,?>> - Returns:
-