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

Packages that use ObjectType
com.evolveum.midpoint.audit.api   
com.evolveum.midpoint.common   
com.evolveum.midpoint.common.expression   
com.evolveum.midpoint.common.mapping   
com.evolveum.midpoint.model   
com.evolveum.midpoint.model.api   
com.evolveum.midpoint.model.api.context   
com.evolveum.midpoint.model.api.hooks   
com.evolveum.midpoint.model.controller   
com.evolveum.midpoint.model.expr   
com.evolveum.midpoint.model.importer   
com.evolveum.midpoint.model.lens   
com.evolveum.midpoint.model.lens.projector   
com.evolveum.midpoint.model.test   
com.evolveum.midpoint.model.util   
com.evolveum.midpoint.provisioning.api   
com.evolveum.midpoint.provisioning.impl   
com.evolveum.midpoint.repo.api   
com.evolveum.midpoint.repo.cache   
com.evolveum.midpoint.repo.sql   
com.evolveum.midpoint.repo.sql.data.common   
com.evolveum.midpoint.repo.sql.query   
com.evolveum.midpoint.repo.sql.util   
com.evolveum.midpoint.schema   
com.evolveum.midpoint.schema.constants   
com.evolveum.midpoint.schema.util   
com.evolveum.midpoint.task.api   
com.evolveum.midpoint.task.quartzimpl   
com.evolveum.midpoint.test   
com.evolveum.midpoint.test.util   
com.evolveum.midpoint.web.component.assignment   
com.evolveum.midpoint.web.component.data   
com.evolveum.midpoint.web.page.admin.dto   
com.evolveum.midpoint.web.page.admin.users   
com.evolveum.midpoint.web.page.admin.users.dto   
com.evolveum.midpoint.web.util   
com.evolveum.midpoint.wf   
com.evolveum.midpoint.wf.processes   
com.evolveum.midpoint.xml.ns._public.common.api_types_2   
com.evolveum.midpoint.xml.ns._public.common.common_2a   
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 types with arguments of type ObjectType
 java.util.Collection<ObjectDelta<? extends ObjectType>> AuditEventRecord.getDeltas()
           
 PrismObject<? extends ObjectType> AuditEventRecord.getTarget()
           
 

Method parameters in com.evolveum.midpoint.audit.api with type arguments of type ObjectType
 void AuditEventRecord.addDelta(ObjectDelta<? extends ObjectType> delta)
           
 void AuditEventRecord.addDeltas(java.util.Collection<ObjectDelta<? extends ObjectType>> deltasToAdd)
           
 void AuditEventRecord.setTarget(PrismObject<? extends ObjectType> target)
           
 

Uses of ObjectType in com.evolveum.midpoint.common
 

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

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

Classes in com.evolveum.midpoint.common.expression with type parameters of type ObjectType
 class ObjectDeltaObject<T extends ObjectType>
          A DTO class defining old object state (before change), delta (change) and new object state (after change).
 

Methods in com.evolveum.midpoint.common.expression with type parameters of type ObjectType
static
<T extends ObjectType>
ObjectDeltaObject<T>
ObjectDeltaObject.create(PrismObject<T> oldObject, ItemDelta<?>... itemDeltas)
           
static
<T extends ObjectType>
ObjectDeltaObject<T>
ObjectDeltaObject.create(PrismObject<T> oldObject, ObjectDelta<T> delta)
           
 

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

Methods in com.evolveum.midpoint.common.mapping that return ObjectType
 ObjectType Mapping.getOriginObject()
           
 

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

Method parameters in com.evolveum.midpoint.common.mapping with type arguments of type ObjectType
 void Mapping.addVariableDefinition(javax.xml.namespace.QName name, PrismObject<? extends ObjectType> midpointObject)
           
 void Mapping.setRootNode(PrismObject<? 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, java.util.Collection<ObjectOperationOption> options, OperationResult result)
           
<T extends ObjectType>
T
ModelObjectResolver.resolve(ObjectReferenceType ref, java.lang.Class<T> expectedType, java.lang.String contextDescription, OperationResult result)
           
 

Methods in com.evolveum.midpoint.model with parameters of type ObjectType
 void ModelWebService.addObject(ObjectType objectType, 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, OperationOptionsType options, 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(PrismObject<T> object, Task task, OperationResult parentResult)
          Deprecated. 
<T extends ObjectType>
int
ModelService.countObjects(java.lang.Class<T> type, ObjectQuery query, java.util.Collection<ObjectOperationOptions> options, Task task, OperationResult parentResult)
           
<T extends ObjectType>
void
ModelService.deleteObject(java.lang.Class<T> type, java.lang.String oid, Task task, OperationResult parentResult)
          Deprecated. 
<T extends ObjectType>
PrismObject<T>
ModelService.getObject(java.lang.Class<T> type, java.lang.String oid, java.util.Collection<ObjectOperationOptions> options, Task task, OperationResult result)
           Returns object for provided OID.
<T extends ObjectType>
void
ModelService.modifyObject(java.lang.Class<T> type, java.lang.String oid, java.util.Collection<? extends ItemDelta> modifications, Task task, OperationResult parentResult)
          Deprecated. 
<F extends ObjectType,P extends ObjectType>
ModelContext<F,P>
ModelInteractionService.previewChanges(java.util.Collection<ObjectDelta<? extends ObjectType>> deltas, Task task, OperationResult result)
          Computes the most likely changes triggered by the provided delta.
<F extends ObjectType,P extends ObjectType>
ModelContext<F,P>
ModelInteractionService.previewChanges(java.util.Collection<ObjectDelta<? extends ObjectType>> deltas, Task task, OperationResult result)
          Computes the most likely changes triggered by the provided delta.
<T extends ObjectType>
java.util.List<PrismObject<T>>
ModelService.searchObjects(java.lang.Class<T> type, ObjectQuery query, java.util.Collection<ObjectOperationOptions> options, Task task, OperationResult parentResult)
           Search for objects.
 

Method parameters in com.evolveum.midpoint.model.api with type arguments of type ObjectType
 void ModelService.executeChanges(java.util.Collection<ObjectDelta<? extends ObjectType>> deltas, java.util.Collection<ObjectOperationOption> options, Task task, OperationResult parentResult)
           Execute the provided object deltas.
<F extends ObjectType,P extends ObjectType>
ModelContext<F,P>
ModelInteractionService.previewChanges(java.util.Collection<ObjectDelta<? extends ObjectType>> deltas, Task task, OperationResult result)
          Computes the most likely changes triggered by the provided delta.
 

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

Classes in com.evolveum.midpoint.model.api.context with type parameters of type ObjectType
 interface ModelContext<F extends ObjectType,P extends ObjectType>
           
 interface ModelContext<F extends ObjectType,P extends ObjectType>
           
 interface ModelElementContext<O extends ObjectType>
           
 interface ModelProjectionContext<O extends ObjectType>
           
 

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

Method parameters in com.evolveum.midpoint.model.api.hooks with type arguments of type ObjectType
 void ChangeHook.postChange(java.util.Collection<ObjectDelta<? extends ObjectType>> changes, Task task, OperationResult result)
          Deprecated. 
 

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(PrismObject<T> object, Task task, OperationResult parentResult)
          Deprecated. 
<T extends ObjectType>
int
ModelController.countObjects(java.lang.Class<T> type, ObjectQuery query, java.util.Collection<ObjectOperationOptions> options, Task task, OperationResult parentResult)
           
<T extends ObjectType>
void
ModelController.deleteObject(java.lang.Class<T> clazz, java.lang.String oid, Task task, OperationResult parentResult)
          Deprecated. 
<T extends ObjectType>
PrismObject<T>
ModelController.getObject(java.lang.Class<T> clazz, java.lang.String oid, java.util.Collection<ObjectOperationOptions> options, Task task, OperationResult result)
           
<T extends ObjectType>
void
ModelController.modifyObject(java.lang.Class<T> type, java.lang.String oid, java.util.Collection<? extends ItemDelta> modifications, Task task, OperationResult parentResult)
          Deprecated. 
<F extends ObjectType,P extends ObjectType>
ModelContext<F,P>
ModelController.previewChanges(java.util.Collection<ObjectDelta<? extends ObjectType>> deltas, Task task, OperationResult parentResult)
           
<F extends ObjectType,P extends ObjectType>
ModelContext<F,P>
ModelController.previewChanges(java.util.Collection<ObjectDelta<? extends ObjectType>> deltas, Task task, OperationResult parentResult)
           
<T extends ObjectType>
java.util.List<PrismObject<T>>
ModelController.searchObjects(java.lang.Class<T> type, ObjectQuery query, java.util.Collection<ObjectOperationOptions> options, Task task, OperationResult result)
           
 

Method parameters in com.evolveum.midpoint.model.controller with type arguments of type ObjectType
 void ModelController.executeChanges(java.util.Collection<ObjectDelta<? extends ObjectType>> deltas, java.util.Collection<ObjectOperationOption> options, Task task, OperationResult parentResult)
           
 void SystemConfigurationHandler.postChange(java.util.Collection<ObjectDelta<? extends ObjectType>> changes, Task task, OperationResult parentResult)
          Deprecated. 
<F extends ObjectType,P extends ObjectType>
ModelContext<F,P>
ModelController.previewChanges(java.util.Collection<ObjectDelta<? extends ObjectType>> deltas, Task task, OperationResult parentResult)
           
 

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 type parameters of type ObjectType
protected
<T extends ObjectType>
void
ObjectImporter.resolveReferences(PrismObject<T> object, RepositoryService repository, boolean enforceReferentialIntegrity, OperationResult result)
           
protected
<T extends ObjectType>
void
ObjectImporter.validateWithDynamicSchemas(PrismObject<T> object, org.w3c.dom.Element objectElement, RepositoryService repository, OperationResult objectResult)
           
 

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

Classes in com.evolveum.midpoint.model.lens with type parameters of type ObjectType
 class LensContext<F extends ObjectType,P extends ObjectType>
           
 class LensContext<F extends ObjectType,P extends ObjectType>
           
 class LensElementContext<O extends ObjectType>
           
 class LensFocusContext<O extends ObjectType>
           
 class LensProjectionContext<O extends ObjectType>
           
 class ObjectDeltaWaves<O extends ObjectType>
           
 

Methods in com.evolveum.midpoint.model.lens with type parameters of type ObjectType
<F extends ObjectType,P extends ObjectType>
void
LensDebugListener.afterSync(LensContext<F,P> context)
           
<F extends ObjectType,P extends ObjectType>
void
LensDebugListener.afterSync(LensContext<F,P> context)
           
<F extends ObjectType,P extends ObjectType>
void
LensDebugListener.beforeSync(LensContext<F,P> context)
           
<F extends ObjectType,P extends ObjectType>
void
LensDebugListener.beforeSync(LensContext<F,P> context)
           
<F extends ObjectType,P extends ObjectType>
HookOperationMode
Clockwork.click(LensContext<F,P> context, Task task, OperationResult result)
           
<F extends ObjectType,P extends ObjectType>
HookOperationMode
Clockwork.click(LensContext<F,P> context, Task task, OperationResult result)
           
<F extends ObjectType,P extends ObjectType>
void
ChangeExecutor.executeChanges(LensContext<F,P> syncContext, Task task, OperationResult parentResult)
           
<F extends ObjectType,P extends ObjectType>
void
ChangeExecutor.executeChanges(LensContext<F,P> syncContext, Task task, OperationResult parentResult)
           
static
<F extends ObjectType,P extends ObjectType>
java.lang.Class<P>
LensUtil.getProjectionClass(java.lang.Class<F> focusClass)
           
static
<F extends ObjectType,P extends ObjectType>
java.lang.Class<P>
LensUtil.getProjectionClass(java.lang.Class<F> focusClass)
           
static
<F extends ObjectType,P extends ObjectType>
ResourceType
LensUtil.getResource(LensContext<F,P> context, java.lang.String resourceOid, ProvisioningService provisioningService, OperationResult result)
           
static
<F extends ObjectType,P extends ObjectType>
ResourceType
LensUtil.getResource(LensContext<F,P> context, java.lang.String resourceOid, ProvisioningService provisioningService, OperationResult result)
           
static
<T extends ObjectType>
boolean
LensUtil.isFocalClass(java.lang.Class<T> clazz)
           
static
<F extends ObjectType,P extends ObjectType>
LensContext<F,P>
LensUtil.objectDeltasToContext(java.util.Collection<ObjectDelta<? extends ObjectType>> deltas, ProvisioningService provisioningService, PrismContext prismContext, Task task, OperationResult result)
           
static
<F extends ObjectType,P extends ObjectType>
LensContext<F,P>
LensUtil.objectDeltasToContext(java.util.Collection<ObjectDelta<? extends ObjectType>> deltas, ProvisioningService provisioningService, PrismContext prismContext, Task task, OperationResult result)
           
<F extends ObjectType,P extends ObjectType>
HookOperationMode
Clockwork.run(LensContext<F,P> context, Task task, OperationResult result)
           
<F extends ObjectType,P extends ObjectType>
HookOperationMode
Clockwork.run(LensContext<F,P> context, Task task, OperationResult result)
           
static
<F extends ObjectType,P extends ObjectType>
void
LensUtil.traceContext(Trace logger, java.lang.String activity, java.lang.String phase, boolean important, LensContext<F,P> context, boolean showTriples)
           
static
<F extends ObjectType,P extends ObjectType>
void
LensUtil.traceContext(Trace logger, java.lang.String activity, java.lang.String phase, boolean important, LensContext<F,P> context, boolean showTriples)
           
 

Methods in com.evolveum.midpoint.model.lens that return ObjectType
 ObjectType AccountConstruction.getSource()
           
 ObjectType AssignmentPathSegment.getTarget()
           
 

Methods in com.evolveum.midpoint.model.lens that return types with arguments of type ObjectType
 java.util.Collection<ObjectDelta<? extends ObjectType>> LensContext.getAllChanges()
          Returns all changes, user and all accounts.
 java.util.Collection<ObjectDelta<? extends ObjectType>> LensContext.getExecutedDeltas()
          Returns all executed deltas, user and all accounts.
 LensContext<? extends ObjectType,? extends ObjectType> LensElementContext.getLensContext()
           
 LensContext<? extends ObjectType,? extends ObjectType> LensElementContext.getLensContext()
           
 

Methods in com.evolveum.midpoint.model.lens with parameters of type ObjectType
 Assignment AssignmentEvaluator.evaluate(AssignmentType assignmentType, ObjectType source, java.lang.String sourceDescription, OperationResult result)
           
 SimpleDelta<Assignment> AssignmentEvaluator.evaluate(SimpleDelta<AssignmentType> assignmentTypeDelta, ObjectType source, java.lang.String sourceDescription, OperationResult result)
           
 void AccountConstruction.setSource(ObjectType source)
           
 void AssignmentPathSegment.setTarget(ObjectType target)
           
 

Method parameters in com.evolveum.midpoint.model.lens with type arguments of type ObjectType
static
<F extends ObjectType,P extends ObjectType>
LensContext<F,P>
LensUtil.objectDeltasToContext(java.util.Collection<ObjectDelta<? extends ObjectType>> deltas, ProvisioningService provisioningService, PrismContext prismContext, Task task, OperationResult result)
           
 

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

Constructor parameters in com.evolveum.midpoint.model.lens with type arguments of type ObjectType
LensElementContext(java.lang.Class<O> objectTypeClass, LensContext<? extends ObjectType,? extends ObjectType> lensContext)
           
LensElementContext(java.lang.Class<O> objectTypeClass, LensContext<? extends ObjectType,? extends ObjectType> lensContext)
           
LensFocusContext(java.lang.Class<O> objectTypeClass, LensContext<O,? extends ObjectType> lensContext)
           
 

Uses of ObjectType in com.evolveum.midpoint.model.lens.projector
 

Methods in com.evolveum.midpoint.model.lens.projector with type parameters of type ObjectType
<F extends ObjectType,P extends ObjectType>
void
AssignmentProcessor.checkForAssignmentConflicts(LensContext<F,P> context, OperationResult result)
           
<F extends ObjectType,P extends ObjectType>
void
AssignmentProcessor.checkForAssignmentConflicts(LensContext<F,P> context, OperationResult result)
           
<F extends ObjectType,P extends ObjectType>
void
ContextLoader.load(LensContext<F,P> context, java.lang.String activityDescription, OperationResult result)
           
<F extends ObjectType,P extends ObjectType>
void
ContextLoader.load(LensContext<F,P> context, java.lang.String activityDescription, OperationResult result)
           
<F extends ObjectType,P extends ObjectType>
void
AccountValuesProcessor.process(LensContext<F,P> context, LensProjectionContext<P> projectionContext, java.lang.String activityDescription, OperationResult result)
           
<F extends ObjectType,P extends ObjectType>
void
AccountValuesProcessor.process(LensContext<F,P> context, LensProjectionContext<P> projectionContext, java.lang.String activityDescription, OperationResult result)
           
<F extends ObjectType,P extends ObjectType>
void
ActivationProcessor.processActivation(LensContext<F,P> context, LensProjectionContext<P> projectionContext, OperationResult result)
           
<F extends ObjectType,P extends ObjectType>
void
ActivationProcessor.processActivation(LensContext<F,P> context, LensProjectionContext<P> projectionContext, OperationResult result)
           
<F extends ObjectType,P extends ObjectType>
void
AssignmentProcessor.processAssignmentsProjections(LensContext<F,P> context, OperationResult result)
           
<F extends ObjectType,P extends ObjectType>
void
AssignmentProcessor.processAssignmentsProjections(LensContext<F,P> context, OperationResult result)
           
<F extends ObjectType,P extends ObjectType>
void
CredentialsProcessor.processCredentials(LensContext<F,P> context, LensProjectionContext<P> projectionContext, OperationResult result)
           
<F extends ObjectType,P extends ObjectType>
void
CredentialsProcessor.processCredentials(LensContext<F,P> context, LensProjectionContext<P> projectionContext, OperationResult result)
           
<F extends ObjectType,P extends ObjectType>
void
AssignmentProcessor.processOrgAssignments(LensContext<F,P> context, OperationResult result)
           
<F extends ObjectType,P extends ObjectType>
void
AssignmentProcessor.processOrgAssignments(LensContext<F,P> context, OperationResult result)
           
<F extends ObjectType,P extends ObjectType>
void
Projector.project(LensContext<F,P> context, java.lang.String activityDescription, OperationResult parentResult)
           
<F extends ObjectType,P extends ObjectType>
void
Projector.project(LensContext<F,P> context, java.lang.String activityDescription, OperationResult parentResult)
           
<F extends ObjectType,P extends ObjectType>
void
Projector.sortAccountsToWaves(LensContext<F,P> context)
           
<F extends ObjectType,P extends ObjectType>
void
Projector.sortAccountsToWaves(LensContext<F,P> context)
           
 

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

Methods in com.evolveum.midpoint.model.test with type parameters of type ObjectType
protected
<T extends ObjectType>
PrismObject<T>
AbstractModelIntegrationTest.importAndGetObjectFromFile(java.lang.Class<T> type, java.lang.String filename, java.lang.String oid, Task task, OperationResult result)
           
 

Method parameters in com.evolveum.midpoint.model.test with type arguments of type ObjectType
protected  void AbstractModelIntegrationTest.breakAssignmentDelta(java.util.Collection<ObjectDelta<? extends ObjectType>> deltas)
          Breaks user assignment delta in the context by inserting some empty value.
 

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

Methods in com.evolveum.midpoint.model.util with type parameters of type ObjectType
static
<T extends ObjectType>
void
Utils.encryptValue(Protector protector, PrismPropertyValue pval, OperationResult result)
           
static
<T extends ObjectType>
void
Utils.encryptValues(Protector protector, ObjectDelta<T> object, OperationResult objectResult)
           
static
<T extends ObjectType>
void
Utils.encryptValues(Protector protector, PrismObject<T> object, OperationResult objectResult)
           
 

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

Classes in com.evolveum.midpoint.provisioning.api with type parameters of type ObjectType
 interface ResultHandler<T extends ObjectType>
          Classes implementing this interface are used to handle iterative results.
 

Methods in com.evolveum.midpoint.provisioning.api with type parameters of type ObjectType
<T extends ObjectType>
java.lang.String
ProvisioningService.addObject(PrismObject<T> object, ProvisioningScriptsType scripts, OperationResult parentResult)
          Add new object.
<T extends ObjectType>
void
ProvisioningService.applyDefinition(ObjectDelta<T> delta, OperationResult parentResult)
          Applies appropriate definition to the shadow delta.
<T extends ObjectType>
void
ProvisioningService.applyDefinition(PrismObject<T> shadow, OperationResult parentResult)
          Applies appropriate definition to the shadow.
<T extends ObjectType>
int
ProvisioningService.countObjects(java.lang.Class<T> type, ObjectQuery query, OperationResult parentResult)
           
<T extends ObjectType>
void
ProvisioningService.deleteObject(java.lang.Class<T> type, java.lang.String oid, ObjectOperationOption option, ProvisioningScriptsType scripts, OperationResult parentResult)
          Deletes object with specified OID.
<T extends ObjectType>
PrismObject<T>
ProvisioningService.getObject(java.lang.Class<T> type, java.lang.String oid, java.util.Collection<ObjectOperationOption> options, OperationResult parentResult)
          Returns object for provided OID.
<T extends ObjectType>
java.lang.String
ProvisioningService.modifyObject(java.lang.Class<T> type, java.lang.String oid, java.util.Collection<? extends ItemDelta> modifications, ProvisioningScriptsType scripts, OperationResult parentResult)
          Modifies object using relative change description.
<T extends ObjectType>
java.util.List<PrismObject<T>>
ProvisioningService.searchObjects(java.lang.Class<T> type, ObjectQuery query, OperationResult parentResult)
          Search for objects.
<T extends ObjectType>
void
ProvisioningService.searchObjectsIterative(java.lang.Class<T> type, ObjectQuery query, ResultHandler<T> handler, OperationResult parentResult)
          Search for objects iteratively.
 

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(PrismObject<T> object, ProvisioningScriptsType scripts, OperationResult parentResult)
           
<T extends ObjectType>
void
ProvisioningServiceImpl.applyDefinition(ObjectDelta<T> delta, OperationResult parentResult)
           
<T extends ObjectType>
void
ProvisioningServiceImpl.applyDefinition(PrismObject<T> object, OperationResult parentResult)
           
<T extends ObjectType>
int
ProvisioningServiceImpl.countObjects(java.lang.Class<T> type, ObjectQuery query, OperationResult parentResult)
           
<T extends ObjectType>
void
ProvisioningServiceImpl.deleteObject(java.lang.Class<T> type, java.lang.String oid, ObjectOperationOption option, ProvisioningScriptsType scripts, OperationResult parentResult)
           
<T extends ObjectType>
PrismObject<T>
ProvisioningServiceImpl.getObject(java.lang.Class<T> type, java.lang.String oid, java.util.Collection<ObjectOperationOption> options, OperationResult parentResult)
           
<T extends ObjectType>
java.lang.String
ProvisioningServiceImpl.modifyObject(java.lang.Class<T> type, java.lang.String oid, java.util.Collection<? extends ItemDelta> modifications, ProvisioningScriptsType scripts, OperationResult parentResult)
           
<T extends ObjectType>
java.util.List<PrismObject<T>>
ProvisioningServiceImpl.searchObjects(java.lang.Class<T> type, ObjectQuery query, OperationResult parentResult)
           
<T extends ObjectType>
void
ProvisioningServiceImpl.searchObjectsIterative(java.lang.Class<T> type, ObjectQuery query, ResultHandler<T> handler, OperationResult parentResult)
           
 

Methods in com.evolveum.midpoint.provisioning.impl with parameters of type ObjectType
 void ShadowCache.deleteShadow(ObjectType objectType, ObjectOperationOption option, ProvisioningScriptsType scripts, ResourceType resource, OperationResult parentResult)
           
 java.lang.String ShadowCache.modifyShadow(ObjectType objectType, ResourceType resource, java.lang.String oid, java.util.Collection<? extends ItemDelta> modifications, boolean isReconciled, ProvisioningScriptsType 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(PrismObject<T> object, OperationResult parentResult)
          Add new object.
<T extends ObjectType>
int
RepositoryService.countObjects(java.lang.Class<T> type, ObjectQuery query, OperationResult parentResult)
           
<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>
PrismObject<T>
RepositoryService.getObject(java.lang.Class<T> type, java.lang.String oid, OperationResult parentResult)
          Returns object for provided OID.
<T extends ObjectType>
void
RepositoryService.modifyObject(java.lang.Class<T> type, java.lang.String oid, java.util.Collection<? extends ItemDelta> modifications, OperationResult parentResult)
          Modifies object using relative change description.
<T extends ObjectType>
java.util.List<PrismObject<T>>
RepositoryService.searchObjects(java.lang.Class<T> type, ObjectQuery query, 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(PrismObject<T> object, OperationResult parentResult)
           
<T extends ObjectType>
int
RepositoryCache.countObjects(java.lang.Class<T> type, ObjectQuery query, OperationResult parentResult)
           
<T extends ObjectType>
void
RepositoryCache.deleteObject(java.lang.Class<T> type, java.lang.String oid, OperationResult parentResult)
           
<T extends ObjectType>
PrismObject<T>
RepositoryCache.getObject(java.lang.Class<T> type, java.lang.String oid, OperationResult parentResult)
           
<T extends ObjectType>
void
RepositoryCache.modifyObject(java.lang.Class<T> type, java.lang.String oid, java.util.Collection<? extends ItemDelta> modifications, OperationResult parentResult)
           
<T extends ObjectType>
java.util.List<PrismObject<T>>
RepositoryCache.searchObjects(java.lang.Class<T> type, ObjectQuery query, OperationResult parentResult)
           
 

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

Methods in com.evolveum.midpoint.repo.sql with type parameters of type ObjectType
<T extends ObjectType>
java.lang.String
SqlRepositoryServiceImpl.addObject(PrismObject<T> object, OperationResult result)
           
<T extends ObjectType>
int
SqlRepositoryServiceImpl.countObjects(java.lang.Class<T> type, ObjectQuery query, OperationResult result)
           
<T extends ObjectType>
void
SqlRepositoryServiceImpl.deleteObject(java.lang.Class<T> type, java.lang.String oid, OperationResult result)
           
<T extends ObjectType>
PrismObject<T>
SqlRepositoryServiceImpl.getObject(java.lang.Class<T> type, java.lang.String oid, OperationResult result)
           
<T extends ObjectType>
void
SqlRepositoryServiceImpl.modifyObject(java.lang.Class<T> type, java.lang.String oid, java.util.Collection<? extends ItemDelta> modifications, OperationResult result)
           
<T extends ObjectType>
java.util.List<PrismObject<T>>
SqlRepositoryServiceImpl.searchObjects(java.lang.Class<T> type, ObjectQuery query, OperationResult result)
           
 

Uses of ObjectType in com.evolveum.midpoint.repo.sql.data.common
 

Methods in com.evolveum.midpoint.repo.sql.data.common with type parameters of type ObjectType
static
<T extends ObjectType>
java.lang.String
RAnyConverter.getAnySetType(ItemDefinition definition)
           
static
<T extends ObjectType>
java.lang.String
RAnyConverter.getAnySetType(ItemDefinition definition, org.w3c.dom.Element value)
          This method provides extension type (in real it's table) string for definition and value defined as parameters.
abstract
<T extends ObjectType>
T
RObject.toJAXB(PrismContext prismContext)
           
 

Methods in com.evolveum.midpoint.repo.sql.data.common with parameters of type ObjectType
static void RAssignment.copyFromJAXB(AssignmentType jaxb, RAssignment repo, ObjectType parent, PrismContext prismContext)
           
static void RExclusion.copyFromJAXB(ExclusionType jaxb, RExclusion repo, ObjectType parent, PrismContext prismContext)
           
static void RObject.copyFromJAXB(ObjectType jaxb, RObject repo, PrismContext prismContext)
           
static void RCredentials.copyToJAXB(RCredentials repo, CredentialsType jaxb, ObjectType parent, ItemPath path, PrismContext prismContext)
           
static void RObject.copyToJAXB(RObject repo, ObjectType jaxb, PrismContext prismContext)
           
static void ROperationalState.copyToJAXB(ROperationalState repo, OperationalStateType jaxb, ObjectType parent, ItemPath path, PrismContext prismContext)
           
static void RResourceBussinesConfiguration.copyToJAXB(RResourceBussinesConfiguration repo, ResourceBusinessConfigurationType jaxb, ObjectType parent, ItemPath path, PrismContext prismContext)
           
 CredentialsType RCredentials.toJAXB(ObjectType parent, ItemPath path, PrismContext prismContext)
           
 ResourceBusinessConfigurationType RResourceBussinesConfiguration.toJAXB(ObjectType parent, ItemPath path, PrismContext prismContext)
           
 OperationalStateType ROperationalState.toJAXB(ObjectType parent, ItemPath path, PrismContext prismContext)
           
 

Uses of ObjectType in com.evolveum.midpoint.repo.sql.query
 

Methods in com.evolveum.midpoint.repo.sql.query with type parameters of type ObjectType
<T extends ObjectType>
EntityDefinition
QueryRegistry.findDefinition(java.lang.Class<T> type)
           
 

Methods in com.evolveum.midpoint.repo.sql.query that return types with arguments of type ObjectType
 java.lang.Class<? extends ObjectType> QueryInterpreter.getType()
           
 

Constructor parameters in com.evolveum.midpoint.repo.sql.query with type arguments of type ObjectType
QueryInterpreter(org.hibernate.Session session, java.lang.Class<? extends ObjectType> type, PrismContext prismContext)
           
 

Uses of ObjectType in com.evolveum.midpoint.repo.sql.util
 

Method parameters in com.evolveum.midpoint.repo.sql.util with type arguments of type ObjectType
static java.lang.String ClassMapper.getHQLType(java.lang.Class<? extends ObjectType> clazz)
           
static java.lang.Class<? extends RObject> ClassMapper.getHQLTypeClass(java.lang.Class<? extends ObjectType> clazz)
           
 

Uses of ObjectType in com.evolveum.midpoint.schema
 

Classes in com.evolveum.midpoint.schema with type parameters of type ObjectType
 class ObjectDeltaOperation<T extends ObjectType>
           
 

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.util
 

Methods in com.evolveum.midpoint.schema.util with type parameters of type ObjectType
static
<T extends ObjectType>
ObjectQuery
ObjectQueryUtil.createNameQuery(java.lang.Class<T> clazz, PrismContext prismContext, java.lang.String name)
           
static
<T extends ObjectType>
ObjectReferenceType
ObjectTypeUtil.createObjectRef(PrismObject<T> object)
           
<T extends ObjectType>
T
ObjectResolver.resolve(ObjectReferenceType ref, java.lang.Class<T> expectedType, java.lang.String contextDescription, OperationResult result)
          Resolve the provided reference to object (ObjectType).
static
<T extends ObjectType>
java.util.List<PrismObject<T>>
MiscSchemaUtil.toList(java.lang.Class<T> type, ObjectListType listType)
           
 

Methods in com.evolveum.midpoint.schema.util that return types with arguments of type ObjectType
static java.util.Collection<ObjectDelta<? extends ObjectType>> MiscSchemaUtil.cloneObjectDeltaCollection(java.util.Collection<ObjectDelta<? extends ObjectType>> origCollection)
           
static java.util.Collection<ObjectDeltaOperation<? extends ObjectType>> MiscSchemaUtil.cloneObjectDeltaOperationCollection(java.util.Collection<ObjectDeltaOperation<? extends ObjectType>> origCollection)
           
static java.util.Collection<ObjectDelta<? extends ObjectType>> MiscSchemaUtil.createCollection(ObjectDelta<?>... deltas)
          Convenience method that helps avoid some compiler warnings.
 

Methods in com.evolveum.midpoint.schema.util with parameters of type ObjectType
static ObjectReferenceType ObjectTypeUtil.createObjectRef(ObjectType objectType)
           
static java.lang.String SchemaDebugUtil.debugDump(ObjectType objectType, int indent)
           
static java.lang.String ObjectTypeUtil.dump(ObjectType object)
           
static java.lang.String ObjectTypeUtil.getShortTypeName(ObjectType object)
           
static java.lang.String SchemaDebugUtil.prettyPrint(ObjectType object)
           
static java.lang.String SchemaDebugUtil.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 java.util.Collection<ObjectDelta<? extends ObjectType>> MiscSchemaUtil.cloneObjectDeltaCollection(java.util.Collection<ObjectDelta<? extends ObjectType>> origCollection)
           
static java.util.Collection<ObjectDeltaOperation<? extends ObjectType>> MiscSchemaUtil.cloneObjectDeltaOperationCollection(java.util.Collection<ObjectDeltaOperation<? extends ObjectType>> origCollection)
           
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<PrismObject<? 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>
PrismObject<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.quartzimpl
 

Methods in com.evolveum.midpoint.task.quartzimpl with type parameters of type ObjectType
<T extends ObjectType>
PrismObject<T>
TaskQuartzImpl.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>
void
AbstractIntegrationTest.addObject(java.lang.Class<T> type, PrismObject<T> object, OperationResult result)
           
protected
<T extends ObjectType>
PrismObject<T>
AbstractIntegrationTest.addObjectFromFile(java.lang.String filePath, java.lang.Class<T> type, OperationResult parentResult)
           
protected
<T extends ObjectType>
java.util.List<PrismObject<T>>
AbstractIntegrationTest.addObjectsFromFile(java.lang.String filePath, java.lang.Class<T> type, OperationResult parentResult)
           
protected
<T extends ObjectType>
T
AbstractIntegrationTest.parseObjectType(java.io.File file)
           
protected
<T extends ObjectType>
T
AbstractIntegrationTest.parseObjectType(java.io.File file, java.lang.Class<T> clazz)
           
protected
<T extends ObjectType>
T
AbstractIntegrationTest.parseObjectTypeFromFile(java.lang.String fileName, java.lang.Class<T> clazz)
           
 

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

Methods in com.evolveum.midpoint.test that return types with arguments of type ObjectType
 java.util.Collection<ObjectDelta<? extends ObjectType>> DummyAuditService.getExecutionDeltas()
           
 java.util.Collection<ObjectDelta<? extends ObjectType>> DummyAuditService.getExecutionDeltas(int index)
           
 

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.displayObjectTypeCollection(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 with type parameters of type ObjectType
<T extends ObjectType>
T
DirectoryFileObjectResolver.resolve(ObjectReferenceType ref, java.lang.Class<T> expectedType, java.lang.String contextDescription, OperationResult result)
           
 

Uses of ObjectType in com.evolveum.midpoint.web.component.assignment
 

Methods in com.evolveum.midpoint.web.component.assignment that return types with arguments of type ObjectType
 java.lang.Class<? extends ObjectType> AssignmentEditorDtoType.getType()
           
 

Method parameters in com.evolveum.midpoint.web.component.assignment with type arguments of type ObjectType
static AssignmentEditorDtoType AssignmentEditorDtoType.getType(java.lang.Class<? extends ObjectType> type)
           
 

Constructors in com.evolveum.midpoint.web.component.assignment with parameters of type ObjectType
AssignmentEditorDto(ObjectType targetObject, AssignmentEditorDtoType type, UserDtoStatus status, AssignmentType assignment)
           
 

Uses of ObjectType in com.evolveum.midpoint.web.component.data
 

Classes in com.evolveum.midpoint.web.component.data with type parameters of type ObjectType
 class ObjectDataProvider<T extends ObjectType>
           
 class RepositoryObjectDataProvider<T extends ObjectType>
           
 

Uses of ObjectType in com.evolveum.midpoint.web.page.admin.dto
 

Classes in com.evolveum.midpoint.web.page.admin.dto with type parameters of type ObjectType
 class ObjectViewDto<T extends ObjectType>
           
 

Uses of ObjectType in com.evolveum.midpoint.web.page.admin.users
 

Methods in com.evolveum.midpoint.web.page.admin.users that return types with arguments of type ObjectType
 java.lang.Class<? extends ObjectType> AssignablePopupContent.getType()
           
 

Method parameters in com.evolveum.midpoint.web.page.admin.users with type arguments of type ObjectType
protected  void AssignablePopupContent.addPerformed(org.apache.wicket.ajax.AjaxRequestTarget target, java.util.List<ObjectType> selected)
           
 void AssignablePopupContent.setType(java.lang.Class<? extends ObjectType> type)
           
 

Constructor parameters in com.evolveum.midpoint.web.page.admin.users with type arguments of type ObjectType
PageSubmit(ModelContext previewChanges, java.util.Collection<ObjectDelta<? extends ObjectType>> allDeltas, ObjectDelta<UserType> userDelta, java.util.ArrayList<PrismObject> accountsBeforeModify)
           
 

Uses of ObjectType in com.evolveum.midpoint.web.page.admin.users.dto
 

Classes in com.evolveum.midpoint.web.page.admin.users.dto with type parameters of type ObjectType
 class AccountDto<T extends ObjectType>
           
 class OrgStructDto<T extends ObjectType>
           
 

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

Methods in com.evolveum.midpoint.web.util that return types with arguments of type ObjectType
static java.util.Collection<ObjectDelta<? extends ObjectType>> WebMiscUtil.createDeltaCollection(ObjectDelta<? extends ObjectType>... deltas)
           
 

Methods in com.evolveum.midpoint.web.util with parameters of type ObjectType
static java.lang.String WebMiscUtil.getName(ObjectType object)
           
 

Uses of ObjectType in com.evolveum.midpoint.wf
 

Methods in com.evolveum.midpoint.wf that return types with arguments of type ObjectType
 PrismObject<ObjectType> WorkItem.getAdditionalData()
           
 PrismObject<ObjectType> WfDataAccessor.getAdditionalData(org.activiti.engine.task.Task task, java.util.Map<java.lang.String,java.lang.Object> variables, OperationResult result)
           
 PrismObject<ObjectType> WfDataAccessor.getRequestCommon(org.activiti.engine.task.Task task, OperationResult result)
           
 PrismObject<ObjectType> WorkItem.getRequestCommonData()
           
 PrismObject<ObjectType> WorkItem.getRequestSpecificData()
           
 PrismObject<ObjectType> WorkItem.getTrackingData()
           
 PrismObject<ObjectType> WfDataAccessor.getTrackingData(org.activiti.engine.task.Task task, java.util.Map<java.lang.String,java.lang.Object> variables, OperationResult result)
           
 

Method parameters in com.evolveum.midpoint.wf with type arguments of type ObjectType
 void WfHook.postChange(java.util.Collection<ObjectDelta<? extends ObjectType>> changes, Task task, OperationResult result)
          Deprecated. 
 void WorkItem.setAdditionalData(PrismObject<ObjectType> additionalData)
           
 void WorkItem.setRequestCommonData(PrismObject<ObjectType> requestCommonData)
           
 void WorkItem.setRequestSpecificData(PrismObject<ObjectType> requestSpecificData)
           
 void WorkItem.setTrackingData(PrismObject<ObjectType> trackingData)
           
 

Uses of ObjectType in com.evolveum.midpoint.wf.processes
 

Method parameters in com.evolveum.midpoint.wf.processes with type arguments of type ObjectType
 StartProcessInstruction ModifyUserSecondaryProcessWrapper.startProcessIfNeeded(ModelOperationStageType stage, java.util.Collection<ObjectDelta<? extends ObjectType>> changes, Task task)
           
 StartProcessInstruction AddUserProcessWrapper.startProcessIfNeeded(ModelState state, java.util.Collection<ObjectDelta<? extends ObjectType>> changes, Task task)
           
 

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

Fields in com.evolveum.midpoint.xml.ns._public.common.api_types_2 with type parameters of type ObjectType
protected  java.util.List<ObjectType> ObjectListType.object
           
 

Methods in com.evolveum.midpoint.xml.ns._public.common.api_types_2 that return types with arguments of type ObjectType
 java.util.List<ObjectType> ObjectListType.getObject()
          Gets the value of the object property.
 

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

Subclasses of ObjectType in com.evolveum.midpoint.xml.ns._public.common.common_2a
 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 GenericObjectType
          Generic object for storing unknown (unexpected) object types.
 class NodeType
          Node describes a single installation of midPoint.
 class OrgType
          Organizational unit, division, section, object gropup, team or any other form of organizing things and/or people.
 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
          TaskType contains information about a task (either transient or persistent).
 class UserTemplateType
          The user template used to create new users.
 class UserType
          User object represents a physical user of the system.
 class ValuePolicyType
          Java class for ValuePolicyType complex type.
 

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

Methods in com.evolveum.midpoint.xml.ns._public.common.common_2a that return ObjectType
 ObjectType ObjectType.clone()
           
 ObjectType AssignmentType.getTarget()
           
 

Methods in com.evolveum.midpoint.xml.ns._public.common.common_2a 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.
 

Methods in com.evolveum.midpoint.xml.ns._public.common.common_2a with parameters of type ObjectType
 javax.xml.bind.JAXBElement<ObjectType> ObjectFactory.createObject(ObjectType value)
          Create an instance of JAXBElement<ObjectType>}
 void AssignmentType.setTarget(ObjectType value)
           
 

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, OperationOptionsType options, javax.xml.ws.Holder<ObjectType> object, javax.xml.ws.Holder<OperationResultType> result)
           
 void ModelPortType.getObject(java.lang.String objectType, java.lang.String oid, OperationOptionsType options, javax.xml.ws.Holder<ObjectType> object, javax.xml.ws.Holder<OperationResultType> result)
          Returns object for provided OID.
 



Copyright © 2012 evolveum. All Rights Reserved.