Package com.evolveum.midpoint.prism
Interface TypeDefinition
-
- All Superinterfaces:
Cloneable
,DebugDumpable
,Definition
,Revivable
,Serializable
- All Known Subinterfaces:
ComplexTypeDefinition
,CompositeRefinedObjectClassDefinition
,LayerRefinedObjectClassDefinition
,MutableComplexTypeDefinition
,MutableObjectClassComplexTypeDefinition
,ObjectClassComplexTypeDefinition
,RefinedObjectClassDefinition
,SimpleTypeDefinition
- All Known Implementing Classes:
com.evolveum.midpoint.prism.impl.ComplexTypeDefinitionImpl
,CompositeRefinedObjectClassDefinitionImpl
,LayerRefinedObjectClassDefinitionImpl
,ObjectClassComplexTypeDefinitionImpl
,RefinedObjectClassDefinitionImpl
,com.evolveum.midpoint.prism.impl.TypeDefinitionImpl
public interface TypeDefinition extends Definition
- Author:
- mederly
-
-
Field Summary
-
Fields inherited from interface com.evolveum.midpoint.util.DebugDumpable
INDENT_STRING
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
canRepresent(QName typeName)
Class<?>
getCompileTimeClass()
Returns compile-time class, if this type has any.Integer
getInstantiationOrder()
Collection<TypeDefinition>
getStaticSubTypes()
Subtypes - but only these that are a part of the static schema.QName
getSuperType()
Name of super type of this complex type definition.-
Methods inherited from interface com.evolveum.midpoint.util.DebugDumpable
debugDump, debugDump, debugDumpLazily, debugDumpLazily
-
Methods inherited from interface com.evolveum.midpoint.prism.Definition
clone, debugDump, getAnnotation, getDeprecatedSince, getDisplayName, getDisplayOrder, getDocumentation, getDocumentationPreview, getHelp, getPlannedRemoval, getPrismContext, getProcessing, getSchemaMigrations, getSchemaRegistry, getTypeClass, getTypeClassIfKnown, getTypeName, isAbstract, isDeprecated, isElaborate, isEmphasized, isExperimental, isIgnored, isRuntimeSchema, setAnnotation, toMutable
-
-
-
-
Method Detail
-
getCompileTimeClass
@Nullable Class<?> getCompileTimeClass()
Returns compile-time class, if this type has any. For example, UserType.class, ObjectType.class, ExtensionType.class.
-
getSuperType
@Nullable QName getSuperType()
Name of super type of this complex type definition. E.g. c:ObjectType is a super type for c:FocusType which is a super type for c:UserType. Or (more complex example) ri:ShadowAttributesType is a super type of ri:AccountObjectClass. (TODO is this really true?)
-
getStaticSubTypes
@NotNull Collection<TypeDefinition> getStaticSubTypes()
Subtypes - but only these that are a part of the static schema. A little bit experimental. :)
-
getInstantiationOrder
Integer getInstantiationOrder()
-
canRepresent
boolean canRepresent(QName typeName)
-
-