Uses of Class
org.identityconnectors.framework.common.objects.AttributeDelta
-
-
Uses of AttributeDelta in org.identityconnectors.contract.test
Methods in org.identityconnectors.contract.test that return types with arguments of type AttributeDelta Modifier and Type Method Description static Set<AttributeDelta>
ConnectorHelper. getAttributesDelta(DataProvider dataProvider, ObjectClassInfo objectClassInfo, String testName, String qualifier, int sequenceNumber, boolean checkRequired, boolean isMultiValue, boolean isAddValues, boolean onlyCreateable, boolean onlyUpdateable)
Get attributeDelta values (concatenates the qualifier with the name).static Set<AttributeDelta>
ConnectorHelper. getUpdateableAttributesDelta(DataProvider dataProvider, ObjectClassInfo objectClassInfo, String testName, String qualifier, int sequenceNumber, boolean checkRequired, boolean isMultiValue, boolean isAddOrRemoveValues)
Get updateable attributes' values.Method parameters in org.identityconnectors.contract.test with type arguments of type AttributeDelta Modifier and Type Method Description static boolean
ConnectorHelper. checkObjectByAttrDelta(ObjectClassInfo objectClassInfo, ConnectorObject connectorObj, Set<AttributeDelta> requestedAttributesDelta)
Checks if object has expected attributesDelta and values.static boolean
ConnectorHelper. checkObjectByAttrDelta(ObjectClassInfo objectClassInfo, ConnectorObject connectorObj, Set<AttributeDelta> requestedAttributesDelta, boolean checkNotReturnedByDefault)
Checks if object has expected attributesDelta and values. -
Uses of AttributeDelta in org.identityconnectors.framework.api.operations
Methods in org.identityconnectors.framework.api.operations that return types with arguments of type AttributeDelta Modifier and Type Method Description Set<AttributeDelta>
UpdateDeltaApiOp. updateDelta(ObjectClass objclass, Uid uid, Set<AttributeDelta> modifications, OperationOptions options)
Method parameters in org.identityconnectors.framework.api.operations with type arguments of type AttributeDelta Modifier and Type Method Description Set<AttributeDelta>
UpdateDeltaApiOp. updateDelta(ObjectClass objclass, Uid uid, Set<AttributeDelta> modifications, OperationOptions options)
-
Uses of AttributeDelta in org.identityconnectors.framework.common.objects
Methods in org.identityconnectors.framework.common.objects that return AttributeDelta Modifier and Type Method Description AttributeDelta
AttributeDeltaBuilder. build()
Creates a attributeDelta with the specified name and the value for valuesToAdd, valuesToRemove and valuesToReplace that have been provided to the builder.static AttributeDelta
AttributeDeltaBuilder. build(String name)
Creates a attributeDelta with the specified name and anull
value for valuesToAdd, valuesToRemove and valuesToReplace.static AttributeDelta
AttributeDeltaBuilder. build(String name, Object... args)
Creates anAttributeDelta
with the name and the values provided for valuesToReplace.static AttributeDelta
AttributeDeltaBuilder. build(String name, Collection<?> valuesToReplace)
Creates anAttributeDelta
with the name and the values provided for valuesToReplace.static AttributeDelta
AttributeDeltaBuilder. build(String name, Collection<?> valuesToAdd, Collection<?> valuesToRemove)
Creates anAttributeDelta
with the name and the values provided for valuesToAdd and valuesToRemove.static AttributeDelta
AttributeDeltaBuilder. buildCurrentPassword(char[] password)
Builds an of operational attribute that represents the current password of an object on a target system or application.static AttributeDelta
AttributeDeltaBuilder. buildCurrentPassword(GuardedString password)
Builds an of operational attribute that represents the current password of an object on a target system or application.static AttributeDelta
AttributeDeltaBuilder. buildDisableDate(long date)
Builds an of operational attribute that represents the date and time to disable an object on a target system or application.static AttributeDelta
AttributeDeltaBuilder. buildDisableDate(Date date)
Builds an of operational attribute that represents the date and time to disable an object on a target system or application.static AttributeDelta
AttributeDeltaBuilder. buildEnabled(boolean value)
Builds an of operational attribute that represents whether object is enabled on a target system or application.static AttributeDelta
AttributeDeltaBuilder. buildEnableDate(long date)
Builds an of operational attribute that represents the date and time to enable an object on a target system or application.static AttributeDelta
AttributeDeltaBuilder. buildEnableDate(Date date)
Builds an of operational attribute that represents the date and time to enable an object on a target system or application.static AttributeDelta
AttributeDeltaBuilder. buildLastLoginDate(long date)
Builds an of pre-defined attribute that represents the date and time of the most recent login for an object (such as an account) on a target system or application.static AttributeDelta
AttributeDeltaBuilder. buildLastLoginDate(Date date)
Builds an of pre-defined attribute that represents the date and time of the most recent login for an object (such as an account) on a target system or application.static AttributeDelta
AttributeDeltaBuilder. buildLastPasswordChangeDate(long date)
Builds an of pre-defined attribute that represents the date and time that the password was most recently changed for an object (such as an account) on a target system or application.static AttributeDelta
AttributeDeltaBuilder. buildLastPasswordChangeDate(Date date)
Builds an of pre-defined attribute that represents the date and time that the password was most recently changed for an object (such as an account) on a target system or application.static AttributeDelta
AttributeDeltaBuilder. buildLockOut(boolean lock)
Builds an of operational attribute that represents whether an object is locked out on a target system or application.static AttributeDelta
AttributeDeltaBuilder. buildPassword(char[] password)
Builds an of operational attribute that represents the password of an object on a target system or application.static AttributeDelta
AttributeDeltaBuilder. buildPassword(GuardedString password)
Builds an of operational attribute that represents the password of an object on a target system or application.static AttributeDelta
AttributeDeltaBuilder. buildPasswordChangeInterval(long value)
Builds an of pre-defined attribute that represents how often the password must be changed for an object (such as an account) on a target system or application.static AttributeDelta
AttributeDeltaBuilder. buildPasswordExpirationDate(long dateTime)
Builds an of operational attribute that represents the date and time that a password will expire on a target system or application.static AttributeDelta
AttributeDeltaBuilder. buildPasswordExpirationDate(Date dateTime)
Builds an of operational attribute that represents the date and time that a password will expire on a target system or application.static AttributeDelta
AttributeDeltaBuilder. buildPasswordExpired(boolean value)
Builds an of operational attribute that represents whether the password of an object is expired on a target system or application.static AttributeDelta
AttributeDeltaUtil. find(String name, Set<AttributeDelta> attrsDelta)
Find theAttributeDelta
of the given name in theSet
.static AttributeDelta
AttributeDeltaUtil. getAttributeDeltaForName(Set<AttributeDelta> attrsDelta)
Get theAttributeDelta
attributeDelta for attribute Name from the specified set of attributesDelta.static AttributeDelta
AttributeDeltaUtil. getUidAttributeDelta(Set<AttributeDelta> attrsDelta)
Get theAttributeDelta
from the specified set of attributesDelta.Methods in org.identityconnectors.framework.common.objects that return types with arguments of type AttributeDelta Modifier and Type Method Description static Set<AttributeDelta>
AttributeDeltaUtil. addUid(Set<AttributeDelta> attrsDelta, Object... values)
Returns a mutable copy of the original set with the uid attributeDelta added.static Set<AttributeDelta>
AttributeDeltaUtil. filterUid(Set<AttributeDelta> attrsDelta)
Returns a mutable copy of the original set with the uid attributeDelta removed.static Set<AttributeDelta>
AttributeDeltaUtil. getBasicAttributes(Set<AttributeDelta> attrsDelta)
Filter out any special attributeDelta from the specified set.static Set<AttributeDelta>
AttributeDeltaUtil. getSpecialAttributes(Set<AttributeDelta> attrsDelta)
Filter out any basic attributes from the specified set, leaving only special attributes.static Map<String,AttributeDelta>
AttributeDeltaUtil. toMap(Collection<? extends AttributeDelta> attributesDelta)
Methods in org.identityconnectors.framework.common.objects with parameters of type AttributeDelta Modifier and Type Method Description static String
AttributeDeltaUtil. getAsStringValue(AttributeDelta attrDelta)
Get the string value from the specified (single-valued) attributeDelta.static BigDecimal
AttributeDeltaUtil. getBigDecimalValue(AttributeDelta attrDelta)
Get the big decimal value from the specified (single-valued) attributeDelta.static BigInteger
AttributeDeltaUtil. getBigIntegerValue(AttributeDelta attrDelta)
Get the big integer value from the specified (single-valued) attributeDelta.static Boolean
AttributeDeltaUtil. getBooleanValue(AttributeDelta attrDelta)
Get the boolean value from the specified (single-valued) attributeDelta.static Byte[]
AttributeDeltaUtil. getByteArrayValue(AttributeDelta attrDelta)
Get the byte array value from the specified (single-valued) attributeDelta.static Byte
AttributeDeltaUtil. getByteValue(AttributeDelta attrDelta)
Get the byte value from the specified (single-valued) attributeDelta.static Character
AttributeDeltaUtil. getCharacterValue(AttributeDelta attrDelta)
Get the character value from the specified (single-valued) attributeDelta.static Date
AttributeDeltaUtil. getDateValue(AttributeDelta attrDelta)
Get the date value from the specified (single-valued) attributeDelta that contains a long.static Double
AttributeDeltaUtil. getDoubleValue(AttributeDelta attrDelta)
Get the double value from the specified (single-valued) attributeDelta.static Attribute
AttributeDeltaUtil. getEmptyAttribute(AttributeDelta attrDelta)
Get theAttributeDelta
with name specific attributesDelta.static Float
AttributeDeltaUtil. getFloatValue(AttributeDelta attrDelta)
Get the float value from the specified (single-valued) attributeDelta.static GuardedByteArray
AttributeDeltaUtil. getGuardedByteArrayValue(AttributeDelta attrDelta)
Get theGuardedByteArray
value from the specified (single-valued) attributeDelta.static GuardedString
AttributeDeltaUtil. getGuardedStringValue(AttributeDelta attrDelta)
Get theGuardedString
value from the specified (single-valued) attributeDelta.static Integer
AttributeDeltaUtil. getIntegerValue(AttributeDelta attrDelta)
Get the integer value from the specified (single-valued) attributeDelta.static Long
AttributeDeltaUtil. getLongValue(AttributeDelta attrDelta)
Get the long value from the specified (single-valued) attributeDelta.static Map<String,Object>
AttributeDeltaUtil. getMapValue(AttributeDelta attrDelta)
Get the map value from the specified (single-valued) attributeDelta.static Object
AttributeDeltaUtil. getSingleValue(AttributeDelta attr)
Get theObject
value from the specified (single-valued) attributeDelta.static String
AttributeDeltaUtil. getStringValue(AttributeDelta attrDelta)
Get the string value from the specified (single-valued) attributeDelta.static boolean
AttributeDeltaUtil. isSpecial(AttributeDelta attrDelta)
Determines whether the specified name of attribute info is for a special attribute.Method parameters in org.identityconnectors.framework.common.objects with type arguments of type AttributeDelta Modifier and Type Method Description static Set<AttributeDelta>
AttributeDeltaUtil. addUid(Set<AttributeDelta> attrsDelta, Object... values)
Returns a mutable copy of the original set with the uid attributeDelta added.static Set<AttributeDelta>
AttributeDeltaUtil. filterUid(Set<AttributeDelta> attrsDelta)
Returns a mutable copy of the original set with the uid attributeDelta removed.static AttributeDelta
AttributeDeltaUtil. find(String name, Set<AttributeDelta> attrsDelta)
Find theAttributeDelta
of the given name in theSet
.static AttributeDelta
AttributeDeltaUtil. getAttributeDeltaForName(Set<AttributeDelta> attrsDelta)
Get theAttributeDelta
attributeDelta for attribute Name from the specified set of attributesDelta.static Set<AttributeDelta>
AttributeDeltaUtil. getBasicAttributes(Set<AttributeDelta> attrsDelta)
Filter out any special attributeDelta from the specified set.static GuardedString
AttributeDeltaUtil. getCurrentPasswordValue(Set<AttributeDelta> attrsDelta)
Get the current password value from the provided set ofAttributeDelta
s.static Date
AttributeDeltaUtil. getEnableDate(Set<AttributeDelta> attrsDelta)
Get the enable date from the set of attributesDelta.static Boolean
AttributeDeltaUtil. getPasswordExpired(Set<AttributeDelta> attrsDelta)
Get the password expired attributeDelta from aCollection
ofAttributeDelta
s.static GuardedString
AttributeDeltaUtil. getPasswordValue(Set<AttributeDelta> attrsDelta)
Get the password value from the provided set ofAttributeDelta
s.static Set<AttributeDelta>
AttributeDeltaUtil. getSpecialAttributes(Set<AttributeDelta> attrsDelta)
Filter out any basic attributes from the specified set, leaving only special attributes.static AttributeDelta
AttributeDeltaUtil. getUidAttributeDelta(Set<AttributeDelta> attrsDelta)
Get theAttributeDelta
from the specified set of attributesDelta.static Map<String,AttributeDelta>
AttributeDeltaUtil. toMap(Collection<? extends AttributeDelta> attributesDelta)
-
Uses of AttributeDelta in org.identityconnectors.framework.impl.api
Methods in org.identityconnectors.framework.impl.api that return types with arguments of type AttributeDelta Modifier and Type Method Description Set<AttributeDelta>
AbstractConnectorFacade. updateDelta(ObjectClass objectClass, Uid uid, Set<AttributeDelta> attrsDelta, OperationOptions options)
Method parameters in org.identityconnectors.framework.impl.api with type arguments of type AttributeDelta Modifier and Type Method Description Set<AttributeDelta>
AbstractConnectorFacade. updateDelta(ObjectClass objectClass, Uid uid, Set<AttributeDelta> attrsDelta, OperationOptions options)
-
Uses of AttributeDelta in org.identityconnectors.framework.impl.api.local.operations
Methods in org.identityconnectors.framework.impl.api.local.operations that return types with arguments of type AttributeDelta Modifier and Type Method Description Set<AttributeDelta>
UpdateDeltaImpl. updateDelta(ObjectClass objclass, Uid uid, Set<AttributeDelta> modifications, OperationOptions options)
Method parameters in org.identityconnectors.framework.impl.api.local.operations with type arguments of type AttributeDelta Modifier and Type Method Description Set<AttributeDelta>
UpdateDeltaImpl. updateDelta(ObjectClass objclass, Uid uid, Set<AttributeDelta> modifications, OperationOptions options)
-
Uses of AttributeDelta in org.identityconnectors.framework.spi.operations
Methods in org.identityconnectors.framework.spi.operations that return types with arguments of type AttributeDelta Modifier and Type Method Description Set<AttributeDelta>
UpdateDeltaOp. updateDelta(ObjectClass objclass, Uid uid, Set<AttributeDelta> modifications, OperationOptions options)
Update the object specified by theObjectClass
andUid
, modifying the values according to the attribute deltas.Method parameters in org.identityconnectors.framework.spi.operations with type arguments of type AttributeDelta Modifier and Type Method Description Set<AttributeDelta>
UpdateDeltaOp. updateDelta(ObjectClass objclass, Uid uid, Set<AttributeDelta> modifications, OperationOptions options)
Update the object specified by theObjectClass
andUid
, modifying the values according to the attribute deltas.
-