Uses of Class
com.evolveum.midpoint.schema.delta.ObjectDelta

Packages that use ObjectDelta
com.evolveum.midpoint.audit.api   
com.evolveum.midpoint.model   
com.evolveum.midpoint.model.api.hooks   
com.evolveum.midpoint.model.sync.action   
com.evolveum.midpoint.provisioning.api   
com.evolveum.midpoint.provisioning.ucf.api   
com.evolveum.midpoint.schema.delta   
com.evolveum.midpoint.schema.processor   
 

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

Methods in com.evolveum.midpoint.audit.api that return types with arguments of type ObjectDelta
 java.util.Collection<ObjectDelta<?>> AuditEventRecord.getDeltas()
           
 

Methods in com.evolveum.midpoint.audit.api with parameters of type ObjectDelta
 void AuditEventRecord.addDelta(ObjectDelta<?> delta)
           
 

Method parameters in com.evolveum.midpoint.audit.api with type arguments of type ObjectDelta
 void AuditEventRecord.addDeltas(java.util.Collection<ObjectDelta<?>> deltasToAdd)
           
 

Uses of ObjectDelta in com.evolveum.midpoint.model
 

Methods in com.evolveum.midpoint.model that return ObjectDelta
 ObjectDelta<AccountShadowType> AccountSyncContext.getAccountDelta()
           
 ObjectDelta<AccountShadowType> AccountSyncContext.getAccountPrimaryDelta()
           
 ObjectDelta<AccountShadowType> AccountSyncContext.getAccountSecondaryDelta()
           
 ObjectDelta<AccountShadowType> AccountSyncContext.getAccountSyncDelta()
           
 ObjectDelta<UserType> SyncContext.getUserDelta()
          Returns user delta, both primary and secondary (merged together).
 ObjectDelta<UserType> SyncContext.getUserPrimaryDelta()
           
 ObjectDelta<UserType> SyncContext.getUserSecondaryDelta()
           
 

Methods in com.evolveum.midpoint.model that return types with arguments of type ObjectDelta
 java.util.Collection<ObjectDelta<?>> SyncContext.getAllChanges()
          Returns all changes, user and all accounts.
 

Methods in com.evolveum.midpoint.model with parameters of type ObjectDelta
 void SyncContext.addPrimaryUserDelta(ObjectDelta<UserType> userDelta)
           
 void ChangeExecutor.executeChange(ObjectDelta<?> change, OperationResult result)
           
 void AccountSyncContext.setAccountPrimaryDelta(ObjectDelta<AccountShadowType> accountPrimaryDelta)
           
 void SyncContext.setAccountPrimaryDelta(ResourceAccountType rat, ObjectDelta<AccountShadowType> accountDelta)
           
 void AccountSyncContext.setAccountSecondaryDelta(ObjectDelta<AccountShadowType> accountSecondaryDelta)
           
 void SyncContext.setAccountSecondaryDelta(ResourceAccountType rat, ObjectDelta<AccountShadowType> accountDelta)
           
 void AccountSyncContext.setAccountSyncDelta(ObjectDelta<AccountShadowType> accountSyncDelta)
           
 void SyncContext.setUserPrimaryDelta(ObjectDelta<UserType> userPrimaryDelta)
           
 void SyncContext.setUserSecondaryDelta(ObjectDelta<UserType> userSecondaryDelta)
           
 

Method parameters in com.evolveum.midpoint.model with type arguments of type ObjectDelta
 void ChangeExecutor.executeChanges(java.util.Collection<ObjectDelta<?>> changes, OperationResult result)
           
 

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

Method parameters in com.evolveum.midpoint.model.api.hooks with type arguments of type ObjectDelta
 HookOperationMode ChangeHook.postChange(java.util.Collection<ObjectDelta<?>> changes, Task task, OperationResult result)
          Callback after the change is executed by the model.
 HookOperationMode ChangeHook.preChangePrimary(java.util.Collection<ObjectDelta<?>> changes, Task task, OperationResult result)
          Callback before the change is processed by the model.
 HookOperationMode ChangeHook.preChangeSecondary(java.util.Collection<ObjectDelta<?>> changes, Task task, OperationResult result)
          Callback before the change is processed by the model.
 

Uses of ObjectDelta in com.evolveum.midpoint.model.sync.action
 

Methods in com.evolveum.midpoint.model.sync.action with parameters of type ObjectDelta
protected  void BaseAction.createActivationPropertyDelta(ObjectDelta<?> objectDelta, com.evolveum.midpoint.model.sync.action.ActivationDecision activationDecision, java.lang.Boolean oldValue)
           
 

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

Methods in com.evolveum.midpoint.provisioning.api that return ObjectDelta
 ObjectDelta<? extends ResourceObjectShadowType> ResourceObjectShadowChangeDescription.getObjectDelta()
           
 

Methods in com.evolveum.midpoint.provisioning.api with parameters of type ObjectDelta
 void ResourceObjectShadowChangeDescription.setObjectDelta(ObjectDelta<? extends ResourceObjectShadowType> objectDelta)
           
 

Uses of ObjectDelta in com.evolveum.midpoint.provisioning.ucf.api
 

Methods in com.evolveum.midpoint.provisioning.ucf.api that return ObjectDelta
 ObjectDelta<? extends ResourceObjectShadowType> Change.getObjectDelta()
           
 

Methods in com.evolveum.midpoint.provisioning.ucf.api with parameters of type ObjectDelta
 void Change.setObjectDelta(ObjectDelta<? extends ResourceObjectShadowType> change)
           
 

Constructors in com.evolveum.midpoint.provisioning.ucf.api with parameters of type ObjectDelta
Change(ObjectDelta<? extends ResourceObjectShadowType> change, Property token)
           
Change(java.util.Set<ResourceObjectAttribute> identifiers, ObjectDelta<? extends ResourceObjectShadowType> change, Property token)
           
 

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

Methods in com.evolveum.midpoint.schema.delta that return ObjectDelta
 ObjectDelta<T> ObjectDelta.clone()
          Semi-deep clone.
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.
 

Methods in com.evolveum.midpoint.schema.delta with parameters of type ObjectDelta
 void ObjectDelta.merge(ObjectDelta<T> deltaToMerge)
          Merge provided delta into this delta.
static
<T extends ObjectType>
ObjectDelta<T>
ObjectDelta.union(ObjectDelta<T>... deltas)
          Union of several object deltas.
 

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

Methods in com.evolveum.midpoint.schema.processor that return ObjectDelta
 ObjectDelta<T> MidPointObject.compareTo(MidPointObject<T> other)
           
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)
           
 



Copyright © 2012 evolveum. All Rights Reserved.