Searched defs:oldValue (Results 1 - 25 of 71) sorted by relevance

123

/forgerock/opendj-b2.6/tests/staf-tests/shared/resource/
H A Dsvnkit.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/tigris/ org/tigris/subversion/ org/tigris/subversion/javahl/ ...
/forgerock/opendj-b2.6/ext/svnkit/
H A Dsvnkit.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt org/ org/tmatesoft/ org/ ...
/forgerock/opendj2/tests/staf-tests/shared/resource/
H A Dsvnkit.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/tigris/ org/tigris/subversion/ org/tigris/subversion/javahl/ ...
/forgerock/opendj2.6.2/ext/svnkit/
H A Dsvnkit.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt org/ org/tmatesoft/ org/ ...
/forgerock/opendj2.6.2/tests/staf-tests/shared/resource/
H A Dsvnkit.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/tigris/ org/tigris/subversion/ org/tigris/subversion/javahl/ ...
/forgerock/opendj2-jel-hg/tests/staf-tests/shared/resource/
H A Dsvnkit.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/tigris/ org/tigris/subversion/ org/tigris/subversion/javahl/ ...
/forgerock/opendj2-hg/tests/staf-tests/shared/resource/
H A Dsvnkit.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/tigris/ org/tigris/subversion/ org/tigris/subversion/javahl/ ...
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/sm/
H A DPluginConfig.java242 * @param oldValue
248 public void replaceAttributeValue(String attrName, String oldValue, argument
258 newVals.remove(oldValue);
266 SMSUtils.replaceAttributeValue(e, attrName, oldValue, newValue, ps
H A DSMSUtils.java420 static void replaceAttributeValue(SMSEntry entry, String attrName, String oldValue, String newValue, argument
423 entry.removeAttribute(SMSEntry.ATTR_XML_KEYVAL, attrName + "=" + oldValue);
426 entry.removeAttribute(SMSEntry.ATTR_KEYVAL, attrName + "=" + oldValue);
H A DServiceConfig.java652 * @param oldValue
661 public void replaceAttributeValue(String attrName, String oldValue, argument
669 if (currentValues != null && !currentValues.contains(oldValue)) {
678 newVals.remove(oldValue);
686 SMSUtils.replaceAttributeValue(e, attrName, oldValue, newValue, ss
H A DServiceInstance.java268 * @param oldValue
277 public void replaceAttributeValue(String attrName, String oldValue, argument
281 SMSUtils.replaceAttributeValue(e, attrName, oldValue, newValue,
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/
H A DDN2URI.java143 private Collection<String> decodeUrisOnly(ByteSequence oldValue) argument
145 return decode0(oldValue, false).getValue();
206 public ByteSequence computeNewValue(ByteSequence oldValue)
208 if (oldValue != null)
210 final Collection<String> newUris = decodeUrisOnly(oldValue);
215 return oldValue;
261 public ByteSequence computeNewValue(ByteSequence oldValue)
263 if (oldValue != null)
265 final Collection<String> oldUris = decodeUrisOnly(oldValue);
271 return oldValue;
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/spi/
H A DUpdateFunction.java39 * @param oldValue
45 ByteSequence computeNewValue(ByteSequence oldValue); argument
/forgerock/openidm-v4/openidm-util/src/main/java/org/forgerock/openidm/util/
H A DResourceUtil.java193 * @param oldValue old json to compare.
194 * @param newValue new json to compare against oldValue.
198 public static boolean isEqual(JsonValue oldValue, JsonValue newValue) { argument
199 JsonValue tmpOldValue = null == oldValue ? json(object()) : oldValue.copy();
/forgerock/openidm-v4/openidm-core/src/main/java/org/forgerock/openidm/managed/
H A DCollectionRelationshipProvider.java573 * @param oldValue old value of field to validate
578 public void validateRelationshipField(Context context, JsonValue oldValue, JsonValue newValue) argument
581 if (oldValue.isNotNull()) {
582 for (JsonValue oldItem : oldValue) {
H A DManagedObjectSet.java458 * @param oldValue the old value of the object
465 JsonValue oldValue, JsonValue newValue, Set<JsonPointer> relationshipFields)
469 JsonValue decryptedOld = decrypt(oldValue);
472 return newResourceResponse(resourceId, rev, oldValue);
765 * @param oldValue previous state of the json.
771 private void validateRelationshipFields(Context context, JsonValue oldValue, JsonValue newValue) argument
776 oldValue.get(field) == null ? json(null) : oldValue.get(field),
897 // JsonValue oldValue = new JsonValue(cryptoService.getRouter().read(repoId(id)));
930 // Keep a copy of the oldValue
464 update(final Context context, Request request, String resourceId, String rev, JsonValue oldValue, JsonValue newValue, Set<JsonPointer> relationshipFields) argument
1389 performSyncAction(final Context context, final Request request, final String resourceId, final SynchronizationService.SyncServiceAction action, final JsonValue oldValue, final JsonValue newValue) argument
[all...]
H A DManagedObjectSyncService.java22 * @param oldValue the previous object value before the change (if applicable, or null if not)
27 final SynchronizationService.SyncServiceAction action, final JsonValue oldValue, final JsonValue newValue)
26 performSyncAction(final Context context, final Request request, final String resourceId, final SynchronizationService.SyncServiceAction action, final JsonValue oldValue, final JsonValue newValue) argument
H A DRelationshipProvider.java367 * @param oldValue old value of field to refer to during validation of the newValue
372 public abstract void validateRelationshipField(Context context, JsonValue oldValue, JsonValue newValue) argument
1073 field("oldValue", before.getContent().getObject()),
H A DSingletonRelationshipProvider.java313 * @param oldValue old value of field to validate
318 public void validateRelationshipField(Context context, JsonValue oldValue, JsonValue newValue) argument
320 if (oldValue.isNull() && newValue.isNull()) {
322 } else if (oldValue.isNull() || !oldValue.getObject().equals(newValue.getObject())) {
/forgerock/openidm-v4/openidm-core/src/main/java/org/forgerock/openidm/sync/impl/
H A DObjectMapping.java367 * @param oldValue the source object's old value
372 private Set<String> getLinkQualifiers(JsonValue object, JsonValue oldValue, boolean returnAll) throws SynchronizationException { argument
378 scope.put("oldValue", oldValue == null || oldValue.isNull() ? null : oldValue.asMap());
452 * Convenience function with deleted defaulted to false and oldValue defaulted to null
470 private JsonValue doSourceSync(Context context, String resourceId, JsonValue value, boolean sourceDeleted, JsonValue oldValue) argument
486 for (String linkQualifier : getLinkQualifiers(sourceObjectAccessor.getObject(), oldValue, false)) {
490 op.oldValue
731 notifyUpdate(Context context, String resourceContainer, String resourceId, JsonValue oldValue, JsonValue newValue) argument
757 notifyDelete(Context context, String resourceContainer, String resourceId, JsonValue oldValue) argument
1487 public JsonValue oldValue; field in class:ObjectMapping.SyncOperation
[all...]
H A DSynchronizationService.java329 private JsonValue notifyUpdate(Context context, final String resourceContainer, final String resourceId, final JsonValue oldValue, final JsonValue newValue) argument
334 return mapping.notifyUpdate(context, resourceContainer, resourceId, oldValue, newValue);
339 private JsonValue notifyDelete(Context context, final String resourceContainer, final String resourceId, final JsonValue oldValue) argument
342 PendingAction.handlePendingActions(context, ReconAction.UNLINK, mappings, resourceContainer, resourceId, oldValue);
346 return mapping.notifyDelete(context, resourceContainer, resourceId, oldValue);
418 return newActionResponse(notifyUpdate(context, resourceContainer, resourceId, request.getContent().get("oldValue"), request.getContent().get("newValue"))).asPromise();
423 return newActionResponse(notifyDelete(context, resourceContainer, resourceId, request.getContent().get("oldValue"))).asPromise();
/forgerock/openam/openam-core/src/main/java/com/sun/identity/sm/
H A DPluginConfig.java242 * @param oldValue
248 public void replaceAttributeValue(String attrName, String oldValue, argument
258 newVals.remove(oldValue);
266 SMSUtils.replaceAttributeValue(e, attrName, oldValue, newValue, ps
H A DSMSUtils.java462 static void replaceAttributeValue(SMSEntry entry, String attrName, String oldValue, String newValue, argument
465 entry.removeAttribute(SMSEntry.ATTR_XML_KEYVAL, attrName + "=" + oldValue);
468 entry.removeAttribute(SMSEntry.ATTR_KEYVAL, attrName + "=" + oldValue);
H A DServiceConfig.java652 * @param oldValue
661 public void replaceAttributeValue(String attrName, String oldValue, argument
669 if (currentValues != null && !currentValues.contains(oldValue)) {
678 newVals.remove(oldValue);
686 SMSUtils.replaceAttributeValue(e, attrName, oldValue, newValue, ss
H A DServiceInstance.java268 * @param oldValue
277 public void replaceAttributeValue(String attrName, String oldValue, argument
281 SMSUtils.replaceAttributeValue(e, attrName, oldValue, newValue,

Completed in 225 milliseconds

123