Interface AttributeDefinitionStore
- All Superinterfaces:
LocalItemDefinitionStore
- All Known Subinterfaces:
CompositeObjectDefinition
,CompositeObjectDefinitionDelegator
,ResourceObjectClassDefinition
,ResourceObjectClassDefinitionDelegator
,ResourceObjectDefinition
,ResourceObjectDefinitionDelegator
,ResourceObjectTypeDefinition
,ResourceObjectTypeDefinitionDelegator
,ShadowAttributesComplexTypeDefinition
- All Known Implementing Classes:
AbstractResourceObjectDefinitionImpl
,CompositeObjectDefinitionImpl
,ResourceObjectClassDefinitionImpl
,ResourceObjectTypeDefinitionImpl
Provides information about resource object attributes: both simple and reference ones.
-
Method Summary
Modifier and TypeMethodDescriptiondefault boolean
containsAttributeDefinition
(@NotNull QName attributeName) Returns true if there is an attribute with the given name defined.default @Nullable ShadowAttributeDefinition<?,
?, ?, ?> findAttributeDefinition
(QName name) Finds a definition of a simple attribute with a given name.@Nullable ShadowAttributeDefinition<?,
?, ?, ?> findAttributeDefinition
(QName name, boolean caseInsensitive) Finds an attribute definition by looking at the property name.default @NotNull ShadowAttributeDefinition<?,
?, ?, ?> findAttributeDefinitionRequired
(@NotNull QName name) default @NotNull ShadowAttributeDefinition<?,
?, ?, ?> findAttributeDefinitionRequired
(@NotNull QName name, Object context) default @NotNull ShadowAttributeDefinition<?,
?, ?, ?> findAttributeDefinitionStrictlyRequired
(@NotNull QName name) Finds a definition of an attribute with a given name.default @NotNull ShadowAttributeDefinition<?,
?, ?, ?> findAttributeDefinitionStrictlyRequired
(@NotNull QName name, @NotNull Supplier<String> contextSupplier) Finds a definition of an attribute with a given name.default @NotNull ShadowReferenceAttributeDefinition
default @NotNull ShadowReferenceAttributeDefinition
findReferenceAttributeDefinitionRequired
(QName name, Supplier<String> contextSupplier) default ShadowAttributeDefinition<?,
?, ?, ?> findShadowAttributeDefinitionRequired
(@NotNull ItemName itemName, boolean ignoreCase, Object errorCtx) TODO ...default <T> ShadowSimpleAttributeDefinition<T>
Finds attribute definition using local name only.default <T> @Nullable ShadowSimpleAttributeDefinition<T>
Finds a definition of a simple attribute with a given name.default <T> @Nullable ShadowSimpleAttributeDefinition<T>
findSimpleAttributeDefinition
(QName name, boolean caseInsensitive) Finds a simple attribute definition by looking at the property name.default <T> @NotNull ShadowSimpleAttributeDefinition<T>
findSimpleAttributeDefinitionRequired
(@NotNull QName name) Finds a definition of an attribute with a given name.default <T> @NotNull ShadowSimpleAttributeDefinition<T>
findSimpleAttributeDefinitionRequired
(@NotNull QName name, @NotNull Supplier<String> contextSupplier) Finds a definition of an attribute with a given name.default <T> @NotNull ShadowSimpleAttributeDefinition<T>
A convenience variant offindSimpleAttributeDefinition(String)
.default @NotNull ShadowSimpleAttributeDefinition<?>
findSimpleAttributeDefinitionStrictlyRequired
(@NotNull QName name) Finds a definition of an attribute with a given name.default @NotNull ShadowSimpleAttributeDefinition<?>
findSimpleAttributeDefinitionStrictlyRequired
(@NotNull QName name, @NotNull Supplier<String> contextSupplier) Finds a definition of an attribute with a given name.default @NotNull Collection<ItemName>
@NotNull List<? extends ShadowAttributeDefinition<?,
?, ?, ?>> Returns all attribute definitions as an unmodifiable collection.default <AD extends ShadowAttributeDefinition<?,
?, ?, ?>>
@NotNull List<? extends AD>getAttributeDefinitions
(Class<AD> type) Returns all attribute definitions of given type as an unmodifiable collection.default @NotNull Collection<ItemName>
default @NotNull List<? extends ShadowReferenceAttributeDefinition>
Returns definitions of all associations as an unmodifiable collection.default @NotNull Collection<ItemName>
default @NotNull List<? extends ShadowSimpleAttributeDefinition<?>>
default boolean
Returns true if the object class has any index-only attributes.default <T> @NotNull ShadowSimpleAttribute<T>
instantiateAttribute
(@NotNull QName attrName, @NotNull T... realValues) Real values should have no duplicates.Methods inherited from interface com.evolveum.midpoint.prism.LocalItemDefinitionStore
containsItemDefinition, findContainerDefinition, findItemDefinition, findItemDefinition, findLocalItemDefinition, findLocalItemDefinition, findLocalItemDefinitionByIteration, findPropertyDefinition, findReferenceDefinition, getDefinitions
-
Method Details
-
getAttributeDefinitions
Returns all attribute definitions as an unmodifiable collection. Should be the same content as returned by `getDefinitions`. The returned value is aList
because of the contract ofComplexTypeDefinition.getDefinitions()
. -
getSimpleAttributeDefinitions
@NotNull default @NotNull List<? extends ShadowSimpleAttributeDefinition<?>> getSimpleAttributeDefinitions() -
getReferenceAttributeDefinitions
@NotNull default @NotNull List<? extends ShadowReferenceAttributeDefinition> getReferenceAttributeDefinitions()Returns definitions of all associations as an unmodifiable collection. Note: these items are _not_ included in getDefinitions. (BTW, ResourceAssociationDefinition is not a subtype of ItemDefinition, not even of Definition.) -
getReferenceAttributesNames
-
getAttributeDefinitions
@NotNull default <AD extends ShadowAttributeDefinition<?,?, @NotNull List<? extends AD> getAttributeDefinitions?, ?>> (Class<AD> type) Returns all attribute definitions of given type as an unmodifiable collection. -
findSimpleAttributeDefinition
@Nullable default <T> @Nullable ShadowSimpleAttributeDefinition<T> findSimpleAttributeDefinition(QName name) Finds a definition of a simple attribute with a given name. Returns null if nothing is found. -
findAttributeDefinition
Finds a definition of a simple attribute with a given name. Returns null if nothing is found. -
findAttributeDefinitionRequired
@NotNull default @NotNull ShadowAttributeDefinition<?,?, findAttributeDefinitionRequired?, ?> (@NotNull @NotNull QName name, Object context) throws SchemaException - Throws:
SchemaException
-
findAttributeDefinitionRequired
@NotNull default @NotNull ShadowAttributeDefinition<?,?, findAttributeDefinitionRequired?, ?> (@NotNull @NotNull QName name) throws SchemaException - Throws:
SchemaException
-
findShadowAttributeDefinitionRequired
default ShadowAttributeDefinition<?,?, findShadowAttributeDefinitionRequired?, ?> (@NotNull @NotNull ItemName itemName, boolean ignoreCase, Object errorCtx) throws SchemaException TODO ... ignoreCase will be part of the schema, soon ...- Throws:
SchemaException
-
findSimpleAttributeDefinitionRequired
@NotNull default <T> @NotNull ShadowSimpleAttributeDefinition<T> findSimpleAttributeDefinitionRequired(@NotNull @NotNull QName name) throws SchemaException Finds a definition of an attribute with a given name. ThrowsSchemaException
if it's not there.- Throws:
SchemaException
-
findSimpleAttributeDefinitionStrictlyRequired
@NotNull default @NotNull ShadowSimpleAttributeDefinition<?> findSimpleAttributeDefinitionStrictlyRequired(@NotNull @NotNull QName name) Finds a definition of an attribute with a given name. ThrowsIllegalStateException
if it's not there. -
findAttributeDefinitionStrictlyRequired
@NotNull default @NotNull ShadowAttributeDefinition<?,?, findAttributeDefinitionStrictlyRequired?, ?> (@NotNull @NotNull QName name) Finds a definition of an attribute with a given name. ThrowsIllegalStateException
if it's not there. -
findSimpleAttributeDefinitionRequired
@NotNull default <T> @NotNull ShadowSimpleAttributeDefinition<T> findSimpleAttributeDefinitionRequired(@NotNull @NotNull QName name, @NotNull @NotNull Supplier<String> contextSupplier) throws SchemaException Finds a definition of an attribute with a given name. ThrowsSchemaException
if it's not there.- Throws:
SchemaException
-
findSimpleAttributeDefinitionStrictlyRequired
@NotNull default @NotNull ShadowSimpleAttributeDefinition<?> findSimpleAttributeDefinitionStrictlyRequired(@NotNull @NotNull QName name, @NotNull @NotNull Supplier<String> contextSupplier) Finds a definition of an attribute with a given name. ThrowsIllegalStateException
if it's not there. -
findAttributeDefinitionStrictlyRequired
@NotNull default @NotNull ShadowAttributeDefinition<?,?, findAttributeDefinitionStrictlyRequired?, ?> (@NotNull @NotNull QName name, @NotNull @NotNull Supplier<String> contextSupplier) Finds a definition of an attribute with a given name. ThrowsIllegalStateException
if it's not there. -
findSimpleAttributeDefinition
@Nullable default <T> @Nullable ShadowSimpleAttributeDefinition<T> findSimpleAttributeDefinition(QName name, boolean caseInsensitive) Finds a simple attribute definition by looking at the property name. Returns null if nothing is found.- Parameters:
name
- property definition namecaseInsensitive
- if true, ignoring the case- Returns:
- found property definition or null
-
findAttributeDefinition
@Nullable @Nullable ShadowAttributeDefinition<?,?, findAttributeDefinition?, ?> (QName name, boolean caseInsensitive) Finds an attribute definition by looking at the property name. Returns null if nothing is found.- Parameters:
name
- property definition namecaseInsensitive
- if true, ignoring the case- Returns:
- found property definition or null
-
findSimpleAttributeDefinition
Finds attribute definition using local name only. BEWARE: Ignores attributes in namespaces other than "ri:" (e.g. icfs:uid and icfs:name). -
findSimpleAttributeDefinitionRequired
@NotNull default <T> @NotNull ShadowSimpleAttributeDefinition<T> findSimpleAttributeDefinitionRequired(String name) throws SchemaException A convenience variant offindSimpleAttributeDefinition(String)
.- Throws:
SchemaException
-
hasIndexOnlyAttributes
default boolean hasIndexOnlyAttributes()Returns true if the object class has any index-only attributes. -
containsAttributeDefinition
Returns true if there is an attribute with the given name defined. -
instantiateAttribute
@NotNull default <T> @NotNull ShadowSimpleAttribute<T> instantiateAttribute(@NotNull @NotNull QName attrName, @NotNull @NotNull T... realValues) throws SchemaException Real values should have no duplicates.- Throws:
SchemaException
-
getAttributeNames
-
getAllSimpleAttributesNames
-
findReferenceAttributeDefinition
-
findReferenceAttributeDefinitionRequired
@NotNull default @NotNull ShadowReferenceAttributeDefinition findReferenceAttributeDefinitionRequired(QName name) throws SchemaException - Throws:
SchemaException
-
findReferenceAttributeDefinitionRequired
@NotNull default @NotNull ShadowReferenceAttributeDefinition findReferenceAttributeDefinitionRequired(QName name, Supplier<String> contextSupplier) throws SchemaException - Throws:
SchemaException
-