Uses of Class
com.evolveum.midpoint.xml.ns._public.common.common_1.ObjectType

Packages that use ObjectType
com.evolveum.midpoint.audit.api   
com.evolveum.midpoint.common   
com.evolveum.midpoint.common.diff   
com.evolveum.midpoint.common.patch   
com.evolveum.midpoint.common.refinery   
com.evolveum.midpoint.common.validator   
com.evolveum.midpoint.common.valueconstruction   
com.evolveum.midpoint.model   
com.evolveum.midpoint.model.api   
com.evolveum.midpoint.model.controller   
com.evolveum.midpoint.model.expr   
com.evolveum.midpoint.model.importer   
com.evolveum.midpoint.model.sync   
com.evolveum.midpoint.model.synchronizer   
com.evolveum.midpoint.provisioning.api   
com.evolveum.midpoint.provisioning.impl   
com.evolveum.midpoint.repo.api   
com.evolveum.midpoint.repo.cache   
com.evolveum.midpoint.repo.xml   
com.evolveum.midpoint.schema.constants   
com.evolveum.midpoint.schema.delta   
com.evolveum.midpoint.schema.processor   
com.evolveum.midpoint.schema.util   
com.evolveum.midpoint.task.api   
com.evolveum.midpoint.task.impl   
com.evolveum.midpoint.test   
com.evolveum.midpoint.test.util   
com.evolveum.midpoint.web.bean   
com.evolveum.midpoint.web.controller.util   
com.evolveum.midpoint.web.model   
com.evolveum.midpoint.web.model.dto   
com.evolveum.midpoint.web.model.impl   
com.evolveum.midpoint.web.repo   
com.evolveum.midpoint.xml.ns._public.common.common_1   
com.evolveum.midpoint.xml.ns._public.model.model_1_wsdl   
 

Uses of ObjectType in com.evolveum.midpoint.audit.api
 

Methods in com.evolveum.midpoint.audit.api that return ObjectType
 ObjectType AuditEventRecord.getTarget()
           
 

Methods in com.evolveum.midpoint.audit.api with parameters of type ObjectType
 void AuditEventRecord.setTarget(ObjectType target)
           
 

Uses of ObjectType in com.evolveum.midpoint.common
 

Methods in com.evolveum.midpoint.common with type parameters of type ObjectType
static
<T extends ObjectType>
org.w3c.dom.Element
QueryUtil.createNameAndClassFilter(java.lang.Class<T> type, java.lang.String name)
          Deprecated. 
 

Methods in com.evolveum.midpoint.common with parameters of type ObjectType
static QueryType QueryUtil.createNameQuery(ObjectType object)
           
 

Uses of ObjectType in com.evolveum.midpoint.common.diff
 

Methods in com.evolveum.midpoint.common.diff with parameters of type ObjectType
static ObjectModificationType CalculateXmlDiff.calculateChanges(ObjectType oldObject, ObjectType newObject)
           
 

Uses of ObjectType in com.evolveum.midpoint.common.patch
 

Methods in com.evolveum.midpoint.common.patch with parameters of type ObjectType
 java.lang.String PatchXml.applyDifferences(ObjectModificationType changes, ObjectType objectType)
           
 

Uses of ObjectType in com.evolveum.midpoint.common.refinery
 

Subclasses of ObjectType in com.evolveum.midpoint.common.refinery
 class EnhancedResourceType
           
 

Methods in com.evolveum.midpoint.common.refinery with type parameters of type ObjectType
<T extends ObjectType>
MidPointObject<T>
RefinedResourceSchema.parseObjectType(T objectType)
           
 

Uses of ObjectType in com.evolveum.midpoint.common.validator
 

Methods in com.evolveum.midpoint.common.validator with parameters of type ObjectType
 EventResult EventHandler.postMarshall(ObjectType object, org.w3c.dom.Element objectElement, OperationResult objectResult)
          Call-back called after the object is unmarshalled.
 void Validator.validateObject(ObjectType object, OperationResult objectResult)
           
 

Uses of ObjectType in com.evolveum.midpoint.common.valueconstruction
 

Methods in com.evolveum.midpoint.common.valueconstruction with parameters of type ObjectType
 void ValueConstruction.addVariableDefinition(javax.xml.namespace.QName name, ObjectType objectType)
           
 void ValueConstruction.setRootNode(ObjectType objectType)
           
 

Method parameters in com.evolveum.midpoint.common.valueconstruction with type arguments of type ObjectType
 void ValueConstruction.addVariableDefinition(javax.xml.namespace.QName name, MidPointObject<? extends ObjectType> midpointObject)
           
 void ValueConstruction.setRootNode(MidPointObject<? extends ObjectType> mpObject)
           
 

Uses of ObjectType in com.evolveum.midpoint.model
 

Methods in com.evolveum.midpoint.model with type parameters of type ObjectType
<T extends ObjectType>
T
ModelObjectResolver.getObject(java.lang.Class<T> clazz, java.lang.String oid, PropertyReferenceListType resolve, OperationResult result)
           
 

Methods in com.evolveum.midpoint.model that return ObjectType
 ObjectType ModelObjectResolver.resolve(ObjectReferenceType ref, java.lang.String contextDescription, OperationResult result)
           
 

Methods in com.evolveum.midpoint.model with parameters of type ObjectType
 void ModelWebService.addObject(ObjectType object, javax.xml.ws.Holder<java.lang.String> oidHolder, javax.xml.ws.Holder<OperationResultType> result)
           
 

Method parameters in com.evolveum.midpoint.model with type arguments of type ObjectType
 void ModelWebService.getObject(java.lang.String objectTypeUri, java.lang.String oid, PropertyReferenceListType resolve, javax.xml.ws.Holder<ObjectType> objectHolder, javax.xml.ws.Holder<OperationResultType> resultHolder)
           
 

Uses of ObjectType in com.evolveum.midpoint.model.api
 

Methods in com.evolveum.midpoint.model.api with type parameters of type ObjectType
<T extends ObjectType>
java.lang.String
ModelService.addObject(T object, Task task, OperationResult parentResult)
           Add new object.
<T extends ObjectType>
void
ModelService.deleteObject(java.lang.Class<T> type, java.lang.String oid, Task task, OperationResult parentResult)
           Deletes object with specified OID.
<T extends ObjectType>
T
ModelService.getObject(java.lang.Class<T> type, java.lang.String oid, PropertyReferenceListType resolve, OperationResult result)
           Returns object for provided OID.
<T extends ObjectType>
ResultList<T>
ModelService.listObjects(java.lang.Class<T> objectType, PagingType paging, OperationResult result)
           Returns all objects of specified type that are available to the implementation.
<T extends ObjectType>
void
ModelService.modifyObject(java.lang.Class<T> type, ObjectModificationType change, Task task, OperationResult parentResult)
           Modifies object using relative change description.
<T extends ObjectType>
ResultList<T>
ModelService.searchObjects(java.lang.Class<T> type, QueryType query, PagingType paging, OperationResult parentResult)
           Search for objects.
 

Uses of ObjectType in com.evolveum.midpoint.model.controller
 

Methods in com.evolveum.midpoint.model.controller with type parameters of type ObjectType
<T extends ObjectType>
java.lang.String
ModelController.addObject(T object, Task task, OperationResult parentResult)
           
<T extends ObjectType>
void
ModelController.deleteObject(java.lang.Class<T> clazz, java.lang.String oid, Task task, OperationResult parentResult)
           
<T extends ObjectType>
T
ModelController.getObject(java.lang.Class<T> clazz, java.lang.String oid, PropertyReferenceListType resolve, OperationResult result)
           
<T extends ObjectType>
ResultList<T>
ModelController.listObjects(java.lang.Class<T> objectType, PagingType paging, OperationResult result)
           
<T extends ObjectType>
void
ModelController.modifyObject(java.lang.Class<T> type, ObjectModificationType change, Task task, OperationResult parentResult)
           
<T extends ObjectType>
ResultList<T>
ModelController.searchObjects(java.lang.Class<T> type, QueryType query, PagingType paging, OperationResult result)
           
 

Methods in com.evolveum.midpoint.model.controller with parameters of type ObjectType
protected  void ModelController.resolveObjectAttributes(ObjectType object, PropertyReferenceListType resolve, OperationResult result)
           
 

Uses of ObjectType in com.evolveum.midpoint.model.expr
 

Methods in com.evolveum.midpoint.model.expr that return ObjectType
 ObjectType ExpressionHandler.resolveRef(ObjectReferenceType ref, java.lang.String contextDescription, OperationResult result)
           
 

Uses of ObjectType in com.evolveum.midpoint.model.importer
 

Methods in com.evolveum.midpoint.model.importer with parameters of type ObjectType
protected  void ObjectImporter.resolveReferences(ObjectType object, RepositoryService repository, boolean enforceReferentialIntegrity, OperationResult result)
           
protected  PropertyContainer ObjectImporter.validateWithDynamicSchemas(ObjectType object, org.w3c.dom.Element objectElement, RepositoryService repository, OperationResult objectResult)
           
 

Uses of ObjectType in com.evolveum.midpoint.model.sync
 

Methods in com.evolveum.midpoint.model.sync with parameters of type ObjectType
 boolean SynchronizeAccountResultHandler.handle(ObjectType object, OperationResult parentResult)
           
 

Uses of ObjectType in com.evolveum.midpoint.model.synchronizer
 

Methods in com.evolveum.midpoint.model.synchronizer with parameters of type ObjectType
 Assignment AssignmentEvaluator.evaluate(AssignmentType assignmentType, ObjectType source, OperationResult result)
           
 SimpleDelta<Assignment> AssignmentEvaluator.evaluate(SimpleDelta<AssignmentType> assignmentTypeDelta, ObjectType source, OperationResult result)
           
 void AccountConstruction.setSource(ObjectType source)
           
 

Constructors in com.evolveum.midpoint.model.synchronizer with parameters of type ObjectType
AccountConstruction(AccountConstructionType accountConstructionType, ObjectType source)
           
 

Uses of ObjectType in com.evolveum.midpoint.provisioning.api
 

Methods in com.evolveum.midpoint.provisioning.api with type parameters of type ObjectType
<T extends ObjectType>
java.lang.String
ProvisioningService.addObject(T object, ScriptsType scripts, OperationResult parentResult)
          Add new object.
<T extends ObjectType>
void
ProvisioningService.deleteObject(java.lang.Class<T> type, java.lang.String oid, ScriptsType scripts, OperationResult parentResult)
          Deletes object with specified OID.
<T extends ObjectType>
T
ProvisioningService.getObject(java.lang.Class<T> type, java.lang.String oid, PropertyReferenceListType resolve, OperationResult parentResult)
          Returns object for provided OID.
<T extends ObjectType>
ResultList<T>
ProvisioningService.listObjects(java.lang.Class<T> objectType, PagingType paging, OperationResult parentResult)
          Returns all objects of specified type that are available to the implementation.
<T extends ObjectType>
void
ProvisioningService.modifyObject(java.lang.Class<T> type, ObjectModificationType objectChange, ScriptsType scripts, OperationResult parentResult)
          Modifies object using relative change description.
<T extends ObjectType>
ResultList<T>
ProvisioningService.searchObjects(java.lang.Class<T> type, QueryType query, PagingType paging, OperationResult parentResult)
          Search for objects.
 

Methods in com.evolveum.midpoint.provisioning.api with parameters of type ObjectType
 boolean ResultHandler.handle(ObjectType object, OperationResult parentResult)
          Handle a single result.
 

Uses of ObjectType in com.evolveum.midpoint.provisioning.impl
 

Methods in com.evolveum.midpoint.provisioning.impl with type parameters of type ObjectType
<T extends ObjectType>
java.lang.String
ProvisioningServiceImpl.addObject(T object, ScriptsType scripts, OperationResult parentResult)
           
<T extends ObjectType>
void
ProvisioningServiceImpl.deleteObject(java.lang.Class<T> type, java.lang.String oid, ScriptsType scripts, OperationResult parentResult)
           
<T extends ObjectType>
T
ProvisioningServiceImpl.getObject(java.lang.Class<T> type, java.lang.String oid, PropertyReferenceListType resolve, OperationResult parentResult)
           
<T extends ObjectType>
ResultList<T>
ProvisioningServiceImpl.listObjects(java.lang.Class<T> objectType, PagingType paging, OperationResult parentResult)
           
<T extends ObjectType>
void
ProvisioningServiceImpl.modifyObject(java.lang.Class<T> type, ObjectModificationType objectChange, ScriptsType scripts, OperationResult parentResult)
           
<T extends ObjectType>
ResultList<T>
ProvisioningServiceImpl.searchObjects(java.lang.Class<T> type, QueryType query, PagingType paging, OperationResult parentResult)
           
 

Methods in com.evolveum.midpoint.provisioning.impl with parameters of type ObjectType
 void ShadowCache.deleteShadow(ObjectType objectType, ScriptsType scripts, ResourceType resource, OperationResult parentResult)
           
 void ShadowCache.modifyShadow(ObjectType objectType, ResourceType resource, ObjectModificationType objectChange, ScriptsType scripts, OperationResult parentResult)
           
 

Uses of ObjectType in com.evolveum.midpoint.repo.api
 

Methods in com.evolveum.midpoint.repo.api with type parameters of type ObjectType
<T extends ObjectType>
java.lang.String
RepositoryService.addObject(T object, OperationResult parentResult)
          Add new object.
<T extends ObjectType>
void
RepositoryService.deleteObject(java.lang.Class<T> type, java.lang.String oid, OperationResult parentResult)
          Deletes object with specified OID.
<T extends ObjectType>
T
RepositoryService.getObject(java.lang.Class<T> type, java.lang.String oid, PropertyReferenceListType resolve, OperationResult parentResult)
          Returns object for provided OID.
<T extends ObjectType>
PropertyAvailableValuesListType
RepositoryService.getPropertyAvailableValues(java.lang.Class<T> type, java.lang.String oid, PropertyReferenceListType properties, OperationResult parentResult)
          Returns list of available values for specified properties.
<T extends ObjectType>
ResultList<T>
RepositoryService.listObjects(java.lang.Class<T> type, PagingType paging, OperationResult parentResult)
          Returns all objects of specified type in the repository.
<T extends ObjectType>
void
RepositoryService.modifyObject(java.lang.Class<T> type, ObjectModificationType objectChange, OperationResult parentResult)
          Modifies object using relative change description.
<T extends ObjectType>
ResultList<T>
RepositoryService.searchObjects(java.lang.Class<T> type, QueryType query, PagingType paging, OperationResult parentResult)
          Search for objects in the repository.
 

Uses of ObjectType in com.evolveum.midpoint.repo.cache
 

Methods in com.evolveum.midpoint.repo.cache with type parameters of type ObjectType
<T extends ObjectType>
java.lang.String
RepositoryCache.addObject(T object, OperationResult parentResult)
           
<T extends ObjectType>
void
RepositoryCache.deleteObject(java.lang.Class<T> type, java.lang.String oid, OperationResult parentResult)
           
<T extends ObjectType>
T
RepositoryCache.getObject(java.lang.Class<T> type, java.lang.String oid, PropertyReferenceListType resolve, OperationResult parentResult)
           
<T extends ObjectType>
PropertyAvailableValuesListType
RepositoryCache.getPropertyAvailableValues(java.lang.Class<T> type, java.lang.String oid, PropertyReferenceListType properties, OperationResult parentResult)
           
<T extends ObjectType>
ResultList<T>
RepositoryCache.listObjects(java.lang.Class<T> type, PagingType paging, OperationResult parentResult)
           
<T extends ObjectType>
void
RepositoryCache.modifyObject(java.lang.Class<T> type, ObjectModificationType objectChange, OperationResult parentResult)
           
<T extends ObjectType>
ResultList<T>
RepositoryCache.searchObjects(java.lang.Class<T> type, QueryType query, PagingType paging, OperationResult parentResult)
           
 

Uses of ObjectType in com.evolveum.midpoint.repo.xml
 

Methods in com.evolveum.midpoint.repo.xml with type parameters of type ObjectType
<T extends ObjectType>
java.lang.String
XmlRepositoryService.addObject(T object, OperationResult parentResult)
           
<T extends ObjectType>
void
XmlRepositoryService.deleteObject(java.lang.Class<T> type, java.lang.String oid, OperationResult parentResult)
           
<T extends ObjectType>
T
XmlRepositoryService.getObject(java.lang.Class<T> type, java.lang.String oid, PropertyReferenceListType resolve, OperationResult parentResult)
           
<T extends ObjectType>
PropertyAvailableValuesListType
XmlRepositoryService.getPropertyAvailableValues(java.lang.Class<T> type, java.lang.String oid, PropertyReferenceListType properties, OperationResult parentResult)
           
<T extends ObjectType>
ResultList<T>
XmlRepositoryService.listObjects(java.lang.Class<T> objectType, PagingType paging, OperationResult parentResult)
           
<T extends ObjectType>
void
XmlRepositoryService.modifyObject(java.lang.Class<T> type, ObjectModificationType objectChange, OperationResult parentResult)
           
<T extends ObjectType>
ResultList<T>
XmlRepositoryService.searchObjects(java.lang.Class<T> clazz, QueryType query, PagingType paging, OperationResult parentResult)
           
 

Uses of ObjectType in com.evolveum.midpoint.schema.constants
 

Methods in com.evolveum.midpoint.schema.constants that return types with arguments of type ObjectType
 java.lang.Class<? extends ObjectType> ObjectTypes.getClassDefinition()
           
static java.lang.Class<? extends ObjectType> ObjectTypes.getObjectTypeClass(java.lang.String objectType)
           
 

Methods in com.evolveum.midpoint.schema.constants with parameters of type ObjectType
static boolean ObjectTypes.isManagedByProvisioning(ObjectType object)
           
 

Method parameters in com.evolveum.midpoint.schema.constants with type arguments of type ObjectType
static ObjectTypes ObjectTypes.getObjectType(java.lang.Class<? extends ObjectType> objectType)
           
static boolean ObjectTypes.isClassManagedByProvisioning(java.lang.Class<? extends ObjectType> clazz)
           
static boolean ObjectTypes.isObjectTypeManagedByProvisioning(java.lang.Class<? extends ObjectType> objectType)
           
 

Uses of ObjectType in com.evolveum.midpoint.schema.delta
 

Classes in com.evolveum.midpoint.schema.delta with type parameters of type ObjectType
 class ObjectDelta<T extends ObjectType>
          Relative difference (delta) of the object.
 

Methods in com.evolveum.midpoint.schema.delta with type parameters of type ObjectType
static
<T extends ObjectType>
ObjectDelta<T>
ObjectDelta.createDelta(ObjectModificationType objectModification, ObjectDefinition<T> objDef)
           
static
<T extends ObjectType>
ObjectDelta<T>
ObjectDelta.createDelta(ObjectModificationType objectModification, Schema schema, java.lang.Class<T> type)
          Creates new delta from the ObjectModificationType (XML).
static
<T extends ObjectType>
ObjectDelta<T>
ObjectDelta.union(ObjectDelta<T>... deltas)
          Union of several object deltas.
 

Method parameters in com.evolveum.midpoint.schema.delta with type arguments of type ObjectType
static PropertyDelta PropertyDelta.createDelta(PropertyModificationType propMod, Schema schema, java.lang.Class<? extends ObjectType> objectType)
          Creates delta from PropertyModificationType (XML).
 

Uses of ObjectType in com.evolveum.midpoint.schema.processor
 

Classes in com.evolveum.midpoint.schema.processor with type parameters of type ObjectType
 class MidPointObject<T extends ObjectType>
          Common supertype for all identity objects.
 class ObjectDefinition<T extends ObjectType>
          MidPoint Object Definition.
 

Fields in com.evolveum.midpoint.schema.processor declared as ObjectType
protected  T MidPointObject.objectType
           
 

Methods in com.evolveum.midpoint.schema.processor with type parameters of type ObjectType
static
<T extends ObjectType>
ObjectDelta<T>
DiffUtil.diff(java.io.File oldXmlFile, java.io.File newXmlFile, java.lang.Class<T> type, Schema objectSchema)
           
static
<T extends ObjectType>
ObjectDelta<T>
DiffUtil.diff(MidPointObject<T> oldObject, MidPointObject<T> newObject)
           
static
<T extends ObjectType>
ObjectDelta<T>
DiffUtil.diff(java.lang.String oldXml, java.lang.String newXml, java.lang.Class<T> type, Schema objectSchema)
           
static
<T extends ObjectType>
ObjectDelta<T>
DiffUtil.diff(T oldObjectType, T newObjectType, java.lang.Class<T> type, Schema objectSchema)
           
<T extends ObjectType>
ObjectDefinition<T>
Schema.findObjectDefinition(java.lang.Class<T> type)
           
<T extends ObjectType>
ObjectDefinition<T>
Schema.findObjectDefinition(ObjectTypes objectType, java.lang.Class<T> type)
           
<T extends ObjectType>
ObjectDefinition<T>
Schema.findObjectDefinitionByType(javax.xml.namespace.QName typeName, java.lang.Class<T> type)
           
<T extends ObjectType>
MidPointObject<T>
Schema.parseObject(java.io.File xmlFile, java.lang.Class<T> type)
           
<T extends ObjectType>
MidPointObject<T>
Schema.parseObject(java.lang.String stringXml, java.lang.Class<T> type)
           
<T extends ObjectType>
MidPointObject<T>
Schema.parseObjectType(T objectType)
           
 

Methods in com.evolveum.midpoint.schema.processor that return ObjectType
 ObjectType PropertyValue.getSource()
           
 

Methods in com.evolveum.midpoint.schema.processor with parameters of type ObjectType
 void PropertyValue.setSource(ObjectType source)
           
 

Method parameters in com.evolveum.midpoint.schema.processor with type arguments of type ObjectType
 PropertyContainerDefinition Schema.findContainerDefinition(java.lang.Class<? extends ObjectType> type, PropertyPath path)
           
 

Constructors in com.evolveum.midpoint.schema.processor with parameters of type ObjectType
PropertyValue(T value, SourceType type, ObjectType source)
           
 

Uses of ObjectType in com.evolveum.midpoint.schema.util
 

Methods in com.evolveum.midpoint.schema.util with type parameters of type ObjectType
static
<T extends ObjectType>
org.w3c.dom.Element
JAXBUtil.objectTypeToDom(T jaxbObject, org.w3c.dom.Document doc)
           
static
<T extends ObjectType>
java.util.List<T>
MiscSchemaUtil.toList(java.lang.Class<T> type, ObjectListType listType)
           
static
<T extends ObjectType>
ResultList<T>
MiscSchemaUtil.toResultList(java.lang.Class<T> type, java.util.List<? extends ObjectType> list)
           
static
<T extends ObjectType>
ResultList<T>
MiscSchemaUtil.toResultList(java.lang.Class<T> type, ObjectListType listType)
           
 

Methods in com.evolveum.midpoint.schema.util that return ObjectType
static ObjectType JAXBUtil.clone(ObjectType object)
           
 ObjectType ObjectResolver.resolve(ObjectReferenceType ref, java.lang.String contextDescription, OperationResult result)
          Resolve the provided reference to object (ObjectType).
 

Methods in com.evolveum.midpoint.schema.util with parameters of type ObjectType
static ObjectType JAXBUtil.clone(ObjectType object)
           
static ObjectReferenceType ObjectTypeUtil.createObjectRef(ObjectType objectType)
           
static java.lang.String DebugUtil.debugDump(ObjectType objectType, int indent)
           
static java.lang.String ObjectTypeUtil.dump(ObjectType object)
           
static java.lang.String ObjectTypeUtil.getShortTypeName(ObjectType object)
           
static org.w3c.dom.Element JAXBUtil.marshallObjectType(ObjectType object)
           
static java.lang.String DebugUtil.prettyPrint(ObjectType object)
           
static java.lang.String DebugUtil.prettyPrint(ObjectType object, boolean showContent)
           
static java.lang.String ObjectTypeUtil.toShortString(ObjectType object)
           
 

Method parameters in com.evolveum.midpoint.schema.util with type arguments of type ObjectType
static void ObjectTypeUtil.assertConcreteType(java.lang.Class<? extends ObjectType> type)
           
static java.util.List<java.lang.String> ObjectTypeUtil.extractOids(java.util.List<? extends ObjectType> objects, java.util.List<? extends ObjectReferenceType> refs)
           
static java.lang.String ObjectTypeUtil.getShortTypeName(java.lang.Class<? extends ObjectType> type)
           
static ObjectListType MiscSchemaUtil.toObjectListType(java.util.List<? extends ObjectType> list)
           
static
<T extends ObjectType>
ResultList<T>
MiscSchemaUtil.toResultList(java.lang.Class<T> type, java.util.List<? extends ObjectType> list)
           
 

Uses of ObjectType in com.evolveum.midpoint.task.api
 

Methods in com.evolveum.midpoint.task.api with type parameters of type ObjectType
<T extends ObjectType>
T
Task.getObject(java.lang.Class<T> type, OperationResult parentResult)
          Returns object that the task is associated with.
 

Uses of ObjectType in com.evolveum.midpoint.task.impl
 

Methods in com.evolveum.midpoint.task.impl with type parameters of type ObjectType
<T extends ObjectType>
T
TaskImpl.getObject(java.lang.Class<T> type, OperationResult parentResult)
           
 

Uses of ObjectType in com.evolveum.midpoint.test
 

Methods in com.evolveum.midpoint.test with type parameters of type ObjectType
protected
<T extends ObjectType>
T
AbstractIntegrationTest.addObjectFromFile(java.lang.String filePath, java.lang.Class<T> type, OperationResult result)
           
 

Methods in com.evolveum.midpoint.test that return ObjectType
protected  ObjectType AbstractIntegrationTest.addObjectFromFile(java.lang.String filePath, OperationResult result)
           
protected static ObjectType AbstractIntegrationTest.unmarshallJaxbFromFile(java.lang.String filePath)
           
 

Methods in com.evolveum.midpoint.test with parameters of type ObjectType
static void IntegrationTestTools.display(java.lang.String message, ObjectType o)
           
 

Method parameters in com.evolveum.midpoint.test with type arguments of type ObjectType
static void IntegrationTestTools.display(java.lang.String message, java.util.Collection<? extends ObjectType> collection)
           
 

Uses of ObjectType in com.evolveum.midpoint.test.util
 

Methods in com.evolveum.midpoint.test.util that return ObjectType
 ObjectType DirectoryFileObjectResolver.resolve(ObjectReferenceType ref, java.lang.String contextDescription, OperationResult result)
           
 

Uses of ObjectType in com.evolveum.midpoint.web.bean
 

Methods in com.evolveum.midpoint.web.bean with parameters of type ObjectType
 void AssignmentBean.setTarget(ObjectType object)
           
 

Uses of ObjectType in com.evolveum.midpoint.web.controller.util
 

Methods in com.evolveum.midpoint.web.controller.util that return types with arguments of type ObjectType
static ObjectManager<ObjectDto<ObjectType>> ControllerUtil.getObjectManager(ObjectTypeCatalog catalog)
           
 

Uses of ObjectType in com.evolveum.midpoint.web.model
 

Methods in com.evolveum.midpoint.web.model with type parameters of type ObjectType
<C extends ObjectType,T>
ObjectManager<T>
ObjectTypeCatalog.getObjectManager(java.lang.Class<C> objectType, java.lang.Class<T> dtoType)
          Returns instance of ObjectManager appropriate for specified class.
 

Methods in com.evolveum.midpoint.web.model that return types with arguments of type ObjectType
 java.util.Set<java.lang.Class<? extends ObjectType>> ObjectTypeCatalog.listSupportedObjectTypes()
          Retuns list of supported object types (in form of Java classes).
 

Uses of ObjectType in com.evolveum.midpoint.web.model.dto
 

Classes in com.evolveum.midpoint.web.model.dto with type parameters of type ObjectType
 class ExtensibleObjectDto<T extends ObjectType>
           
 class ObjectDto<T extends ObjectType>
           
 

Uses of ObjectType in com.evolveum.midpoint.web.model.impl
 

Classes in com.evolveum.midpoint.web.model.impl with type parameters of type ObjectType
 class ObjectManagerImpl<C extends ObjectType,T extends ObjectDto<C>>
           
 

Methods in com.evolveum.midpoint.web.model.impl with type parameters of type ObjectType
<T extends ObjectType>
void
ObjectTypeCatalogImpl.add(java.lang.Class<T> type, ObjectManager<?> objectManager)
           
protected
<O extends ObjectType>
O
ObjectManagerImpl.get(java.lang.Class<O> objectClass, java.lang.String oid, PropertyReferenceListType resolve)
           
<C extends ObjectType,T>
ObjectManager<T>
ObjectTypeCatalogImpl.getObjectManager(java.lang.Class<C> objectType, java.lang.Class<T> dtoType)
           
protected
<O extends ObjectType>
java.util.Collection<O>
ObjectManagerImpl.list(PagingType paging, java.lang.Class<O> type)
           
 

Methods in com.evolveum.midpoint.web.model.impl that return types with arguments of type ObjectType
protected  ObjectDto<ObjectType> BasicObjectManagerImpl.createObject(ObjectType objectType)
           
protected  java.lang.Class<? extends ObjectType> RoleManagerImpl.getSupportedObjectClass()
           
protected  java.lang.Class<? extends ObjectType> SystemManagerImpl.getSupportedObjectClass()
           
protected  java.lang.Class<? extends ObjectType> ResourceManagerImpl.getSupportedObjectClass()
           
protected  java.lang.Class<? extends ObjectType> AccountManagerImpl.getSupportedObjectClass()
           
protected abstract  java.lang.Class<? extends ObjectType> ObjectManagerImpl.getSupportedObjectClass()
           
protected  java.lang.Class<? extends ObjectType> BasicObjectManagerImpl.getSupportedObjectClass()
           
protected  java.lang.Class<? extends ObjectType> UserManagerImpl.getSupportedObjectClass()
           
 java.util.Collection<ObjectDto<ObjectType>> BasicObjectManagerImpl.list(PagingType paging)
           
 java.util.Set<java.lang.Class<? extends ObjectType>> ObjectTypeCatalogImpl.listSupportedObjectTypes()
           
 

Methods in com.evolveum.midpoint.web.model.impl with parameters of type ObjectType
protected  ObjectDto<ObjectType> BasicObjectManagerImpl.createObject(ObjectType objectType)
           
 

Method parameters in com.evolveum.midpoint.web.model.impl with type arguments of type ObjectType
 void ObjectTypeCatalogImpl.setSupportedObjectManagers(java.util.Map<java.lang.Class<? extends ObjectType>,ObjectManager<?>> objectManagers)
           
 java.util.Set<PropertyChange> BasicObjectManagerImpl.submit(ObjectDto<ObjectType> changedObject, Task task, OperationResult parentResult)
           
 

Uses of ObjectType in com.evolveum.midpoint.web.repo
 

Methods in com.evolveum.midpoint.web.repo with type parameters of type ObjectType
<T extends ObjectType>
boolean
RepositoryManager.deleteObject(java.lang.Class<T> type, java.lang.String oid)
           
<T extends ObjectType>
boolean
RepositoryManagerImpl.deleteObject(java.lang.Class<T> type, java.lang.String oid)
           
<T extends ObjectType>
java.util.List<T>
RepositoryManager.listObjects(java.lang.Class<T> objectType, int offset, int count)
           
<T extends ObjectType>
java.util.List<T>
RepositoryManagerImpl.listObjects(java.lang.Class<T> objectType, int offset, int count)
           
 

Methods in com.evolveum.midpoint.web.repo that return ObjectType
 ObjectType RepositoryManager.getObject(java.lang.String oid)
           
 ObjectType RepositoryManagerImpl.getObject(java.lang.String oid)
           
 

Methods in com.evolveum.midpoint.web.repo that return types with arguments of type ObjectType
 java.util.List<? extends ObjectType> RepositoryManager.searchObjects(java.lang.String name)
           
 java.util.List<? extends ObjectType> RepositoryManagerImpl.searchObjects(java.lang.String name)
           
 

Methods in com.evolveum.midpoint.web.repo with parameters of type ObjectType
 java.lang.String RepositoryManager.addObject(ObjectType object)
           
 java.lang.String RepositoryManagerImpl.addObject(ObjectType object)
           
 boolean RepositoryManager.saveObject(ObjectType object, java.lang.String xml)
           
 boolean RepositoryManagerImpl.saveObject(ObjectType object, java.lang.String objectAfterChangeXml)
           
 

Uses of ObjectType in com.evolveum.midpoint.xml.ns._public.common.common_1
 

Subclasses of ObjectType in com.evolveum.midpoint.xml.ns._public.common.common_1
 class AccountShadowType
          Account object type.
 class ConnectorHostType
          Host definition for remote connector, remote connector framework or a remote "gateway".
 class ConnectorType
          Description of a generic connector.
 class ExtensibleObjectType
          Object with generic extensibility mechanism.
 class GenericObjectType
          Generic object for storing unknown (unexpected) object types.
 class PasswordPolicyType
          Java class for PasswordPolicyType complex type.
 class ProtoStructureType
          TODO Experimental object.
 class ResourceObjectShadowType
          Local copy of any object on the provisioning resource that is related to provisioning.
 class ResourceType
          Resource represents a system or component external to the IDM system which we manage.
 class RoleType
          A role that implies assignments.
 class SystemConfigurationType
          System configuration object.
 class TaskType
          TODO
 class UserTemplateType
          The user template used to create new users.
 class UserType
          User object type.
 

Fields in com.evolveum.midpoint.xml.ns._public.common.common_1 declared as ObjectType
protected  ObjectType ObjectChangeAdditionType.object
           
protected  ObjectType AssignmentType.target
           
 

Fields in com.evolveum.midpoint.xml.ns._public.common.common_1 with type parameters of type ObjectType
protected  java.util.List<javax.xml.bind.JAXBElement<? extends ObjectType>> Objects.object
           
protected  java.util.List<ObjectType> ObjectListType.object
           
 

Methods in com.evolveum.midpoint.xml.ns._public.common.common_1 that return ObjectType
 ObjectType ObjectChangeAdditionType.getObject()
          Gets the value of the object property.
 ObjectType AssignmentType.getTarget()
          Gets the value of the target property.
 

Methods in com.evolveum.midpoint.xml.ns._public.common.common_1 that return types with arguments of type ObjectType
 javax.xml.bind.JAXBElement<ObjectType> ObjectFactory.createObject(ObjectType value)
          Create an instance of JAXBElement<ObjectType>}
 java.util.List<javax.xml.bind.JAXBElement<? extends ObjectType>> Objects.getObject()
          Gets the value of the object property.
 java.util.List<ObjectType> ObjectListType.getObject()
          Gets the value of the object property.
 

Methods in com.evolveum.midpoint.xml.ns._public.common.common_1 with parameters of type ObjectType
 javax.xml.bind.JAXBElement<ObjectType> ObjectFactory.createObject(ObjectType value)
          Create an instance of JAXBElement<ObjectType>}
 void ObjectChangeAdditionType.setObject(ObjectType value)
          Sets the value of the object property.
 void AssignmentType.setTarget(ObjectType value)
          Sets the value of the target property.
 

Uses of ObjectType in com.evolveum.midpoint.xml.ns._public.model.model_1_wsdl
 

Methods in com.evolveum.midpoint.xml.ns._public.model.model_1_wsdl with parameters of type ObjectType
 void ModelPortTypeImpl.addObject(ObjectType object, javax.xml.ws.Holder<java.lang.String> oid, javax.xml.ws.Holder<OperationResultType> result)
           
 void ModelPortType.addObject(ObjectType object, javax.xml.ws.Holder<java.lang.String> oid, javax.xml.ws.Holder<OperationResultType> result)
          Add new object.
 

Method parameters in com.evolveum.midpoint.xml.ns._public.model.model_1_wsdl with type arguments of type ObjectType
 void ModelPortTypeImpl.getObject(java.lang.String objectType, java.lang.String oid, PropertyReferenceListType resolve, javax.xml.ws.Holder<ObjectType> object, javax.xml.ws.Holder<OperationResultType> result)
           
 void ModelPortType.getObject(java.lang.String objectType, java.lang.String oid, PropertyReferenceListType resolve, javax.xml.ws.Holder<ObjectType> object, javax.xml.ws.Holder<OperationResultType> result)
          Returns object for provided OID.
 



Copyright © 2012 evolveum. All Rights Reserved.