| /forgerock/opendj-b2.6/tests/staf-tests/shared/resource/ |
| H A D | svnkit.jar | META-INF/ META-INF/MANIFEST.MF org/ org/tigris/ org/tigris/subversion/ org/tigris/subversion/javahl/ ... |
| /forgerock/opendj-b2.6/ext/svnkit/ |
| H A D | svnkit.jar | META-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt org/ org/tmatesoft/ org/ ... |
| /forgerock/opendj2/tests/staf-tests/shared/resource/ |
| H A D | svnkit.jar | META-INF/ META-INF/MANIFEST.MF org/ org/tigris/ org/tigris/subversion/ org/tigris/subversion/javahl/ ... |
| /forgerock/opendj2.6.2/ext/svnkit/ |
| H A D | svnkit.jar | META-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt org/ org/tmatesoft/ org/ ... |
| /forgerock/opendj2.6.2/tests/staf-tests/shared/resource/ |
| H A D | svnkit.jar | META-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 D | svnkit.jar | META-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 D | svnkit.jar | META-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 D | PluginConfig.java | 242 * @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 D | SMSUtils.java | 420 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 D | ServiceConfig.java | 652 * @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 D | ServiceInstance.java | 268 * @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 D | DN2URI.java | 143 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 D | UpdateFunction.java | 39 * @param oldValue 45 ByteSequence computeNewValue(ByteSequence oldValue); argument
|
| /forgerock/openidm-v4/openidm-util/src/main/java/org/forgerock/openidm/util/ |
| H A D | ResourceUtil.java | 193 * @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 D | CollectionRelationshipProvider.java | 573 * @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 D | ManagedObjectSet.java | 458 * @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 D | ManagedObjectSyncService.java | 22 * @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 D | RelationshipProvider.java | 367 * @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 D | SingletonRelationshipProvider.java | 313 * @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 D | ObjectMapping.java | 367 * @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 D | SynchronizationService.java | 329 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 D | PluginConfig.java | 242 * @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 D | SMSUtils.java | 462 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 D | ServiceConfig.java | 652 * @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 D | ServiceInstance.java | 268 * @param oldValue 277 public void replaceAttributeValue(String attrName, String oldValue, argument 281 SMSUtils.replaceAttributeValue(e, attrName, oldValue, newValue,
|