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
public interface ItemDefinitionDelegator<I extends Item<?,?>> 
extends DefinitionDelegator, ItemDefinition<I>
- 
Nested Class SummaryNested classes/interfaces inherited from interface com.evolveum.midpoint.prism.PrismItemAccessDefinitionPrismItemAccessDefinition.Mutable
- 
Field SummaryFields inherited from interface com.evolveum.midpoint.util.DebugDumpableINDENT_STRING
- 
Method SummaryModifier 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. c:user -> c:object, s:pipeline -> s:expression, etc).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.DefinitionDelegatoraccept, 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.FreezablecheckImmutable, checkMutable, freeze, isImmutableMethods inherited from interface com.evolveum.midpoint.prism.ItemDefinitionclone, isMandatory, isMultiValue, isOptional, isSingleValue, toMutable
- 
Method Details- 
delegateItemDefinition<I> delegate()- Specified by:
- delegatein interface- DefinitionDelegator
 
- 
canReaddefault 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 interface- PrismItemAccessDefinition
 
- 
getItemNameDescription copied from interface:ItemDefinitionGets the "canonical" name of the item for the definition. Should be qualified, if at all possible.- Specified by:
- getItemNamein interface- ItemDefinition<I extends Item<?,- ?>> 
 
- 
getMinOccursdefault int getMinOccurs()Description copied from interface:ItemDefinitionReturn the number of minimal value occurrences.- Specified by:
- getMinOccursin interface- ItemDefinition<I extends Item<?,- ?>> 
 
- 
getMaxOccursdefault int getMaxOccurs()Description copied from interface:ItemDefinitionReturn the number of maximal value occurrences. Any negative number means "unbounded".- Specified by:
- getMaxOccursin interface- ItemDefinition<I extends Item<?,- ?>> 
 
- 
isOperationaldefault 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 interface- ItemDefinition<I extends Item<?,- ?>> 
 
- 
isIndexOnlydefault boolean isIndexOnly()Description copied from interface:ItemDefinitionIf true, this item is not stored in XML representation in repo. TODO better name- Specified by:
- isIndexOnlyin interface- ItemDefinition<I extends Item<?,- ?>> 
 
- 
canModifydefault 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 interface- PrismItemAccessDefinition
 
- 
isInheriteddefault boolean isInherited()Description copied from interface:ItemDefinitionWhether the item is inherited from a supertype.- Specified by:
- isInheritedin interface- ItemDefinition<I extends Item<?,- ?>> 
 
- 
isDynamicdefault 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 interface- ItemDefinition<I extends Item<?,- ?>> 
 
- 
canAdddefault 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 interface- PrismItemAccessDefinition
 
- 
getDiagrams- Specified by:
- getDiagramsin interface- Definition
 
- 
getSubstitutionHeadDescription 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 interface- ItemDefinition<I extends Item<?,- ?>> 
 
- 
isHeterogeneousListItemdefault boolean isHeterogeneousListItem()Description copied from interface:ItemDefinitionCan be used in heterogeneous lists as a list item. EXPERIMENTAL.- Specified by:
- isHeterogeneousListItemin interface- ItemDefinition<I extends Item<?,- ?>> 
 
- 
getValueEnumerationRefDescription 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 interface- ItemDefinition<I extends Item<?,- ?>> 
 
- 
isValidFordefault 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 interface- ItemDefinition<I extends Item<?,- ?>> 
 
- 
adoptElementDefinitionFromDescription 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 interface- ItemDefinition<I extends Item<?,- ?>> 
 
- 
instantiateDescription 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 interface- ItemDefinition<I extends Item<?,- ?>> 
- Throws:
- SchemaException
 
- 
instantiateDescription 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 interface- ItemDefinition<I extends Item<?,- ?>> 
- Throws:
- SchemaException
 
- 
findItemDefinitiondefault <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 interface- ItemDefinition<I extends Item<?,- ?>> 
 
- 
createEmptyDeltaDescription copied from interface:ItemDefinitionCreates an empty delta (with appropriate implementation class), pointing to this item definition, with a given path.- Specified by:
- createEmptyDeltain interface- ItemDefinition<I extends Item<?,- ?>> 
 
- 
deepCloneDescription copied from interface:ItemDefinitionTODO document- Specified by:
- deepClonein interface- ItemDefinition<I extends Item<?,- ?>> 
 
- 
debugDumpShortToStringDescription 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 interface- ItemDefinition<I extends Item<?,- ?>> 
 
- 
canBeDefinitionOfDescription copied from interface:ItemDefinitionTODO document- Specified by:
- canBeDefinitionOfin interface- ItemDefinition<I extends Item<?,- ?>> 
 
- 
canBeDefinitionOfDescription copied from interface:ItemDefinitionTODO document- Specified by:
- canBeDefinitionOfin interface- ItemDefinition<I extends Item<?,- ?>> 
 
- 
structuredTypeDescription 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 interface- ItemDefinition<I extends Item<?,- ?>> 
 
- 
isSearchabledefault boolean isSearchable()Description copied from interface:ItemDefinitionReturns true if item definition is searchable.- Specified by:
- isSearchablein interface- ItemDefinition<I extends Item<?,- ?>> 
- Returns:
 
 
-