Uses of Class
org.identityconnectors.framework.common.objects.ObjectClassInfo
-
Packages that use ObjectClassInfo Package Description org.identityconnectors.framework.common.objects -
-
Uses of ObjectClassInfo in org.identityconnectors.framework.common.objects
Methods in org.identityconnectors.framework.common.objects that return ObjectClassInfo Modifier and Type Method Description ObjectClassInfoObjectClassInfoBuilder. build()Constructs an instance ofObjectClassInfowith any characteristics that were previously specified using this builder.ObjectClassInfoSchema. findObjectClassInfo(String type)Returns the ObjectClassInfo for the given type.Methods in org.identityconnectors.framework.common.objects that return types with arguments of type ObjectClassInfo Modifier and Type Method Description Set<ObjectClassInfo>Schema. getObjectClassInfo()Returns the set of object classes that are defined in the schema, regardless of which operations support them.Map<Class<? extends APIOperation>,Set<ObjectClassInfo>>Schema. getSupportedObjectClassesByOperation()Returns the set of object classes that apply to a particular operation.Set<ObjectClassInfo>Schema. getSupportedObjectClassesByOperation(Class<? extends APIOperation> apiop)Returns the supported object classes for the given operation.Methods in org.identityconnectors.framework.common.objects with parameters of type ObjectClassInfo Modifier and Type Method Description voidSchemaBuilder. addSupportedObjectClass(Class<? extends SPIOperation> op, ObjectClassInfo def)Adds the given ObjectClassInfo as a supported ObjectClass for the given operation.voidSchemaBuilder. defineObjectClass(ObjectClassInfo info)Adds another ObjectClassInfo to the schema.voidSchemaBuilder. defineObjectClass(ObjectClassInfo objectClassInfo, Class<? extends SPIOperation>... operations)Adds another ObjectClassInfo to the schema.voidSchemaBuilder. removeSupportedObjectClass(Class<? extends SPIOperation> op, ObjectClassInfo def)Removes the given ObjectClassInfo as a supported ObjectClass for the given operation.Constructor parameters in org.identityconnectors.framework.common.objects with type arguments of type ObjectClassInfo Constructor Description Schema(Set<ObjectClassInfo> info, Set<OperationOptionInfo> options, Map<Class<? extends APIOperation>,Set<ObjectClassInfo>> supportedObjectClassesByOperation, Map<Class<? extends APIOperation>,Set<OperationOptionInfo>> supportedOptionsByOperation)Public only for serialization; please use SchemaBuilder instead.Schema(Set<ObjectClassInfo> info, Set<OperationOptionInfo> options, Map<Class<? extends APIOperation>,Set<ObjectClassInfo>> supportedObjectClassesByOperation, Map<Class<? extends APIOperation>,Set<OperationOptionInfo>> supportedOptionsByOperation)Public only for serialization; please use SchemaBuilder instead.
-