Searched refs:oldObject (Results 1 - 6 of 6) sorted by relevance
| /forgerock/openidm-v4/openidm-zip/src/main/resources/samples/multiplepasswords/script/ |
| H A D | onUpdate-user-custom.js | 17 /*global newObject, oldObject */; 23 object.fieldHistory = oldObject.fieldHistory; 32 oldValue = openidm.isEncrypted(oldObject[field]) 33 ? openidm.decrypt(oldObject[field]) 34 : oldObject[field];
|
| /forgerock/openidm-v4/openidm-zip/src/main/resources/bin/defaults/script/ |
| H A D | compensate.js | 69 * The previous state of the object before the change is given as 'oldObject': 71 * oldObject: null 122 openidm.update(resourceName.toString(), newObject._rev, oldObject, params); 129 openidm.create(resourceName.parent().toString(), resourceName.leaf().toString(), oldObject, params);
|
| /forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/test/qunit/resourceData/ |
| H A D | editResourceViewTest.js | 180 //change the properties that we will test to the actual oldObject values 181 genericEditResourceView.oldObject.manager = ""; 182 genericEditResourceView.oldObject.rev = "1"; 183 genericEditResourceView.oldObject.roles = ["openidm-authorized"]; 185 originalObject = $.extend(true,{},genericEditResourceView.oldObject);
|
| /forgerock/openidm-v4/openidm-ui/openidm-ui-common/src/main/js/org/forgerock/openidm/ui/common/resource/ |
| H A D | GenericEditResourceView.js | 167 this.oldObject = $.extend(true, {}, filteredObject); 222 newValue = _.extend({},this.oldObject, this.getFormValue()); 224 if(_.isEqual(newValue, this.oldObject)) { 234 (!this.oldObject[key] && hasVal) || 235 (!relationshipType && (this.oldObject[key] && !_.isEqual(this.oldObject[key], val))) || 236 (relationshipType && hasVal && !_.isEqual(JSON.parse(val), this.oldObject[key])) 316 if(!_.has(this.oldObject, key) && (!formVal[key] || !formVal[key].length)){ 364 resourceDelegate.patchResourceDifferences(this.data.serviceUrl, {id: this.oldObject._id, rev: this.oldObject [all...] |
| /forgerock/authenticator-android-v2/app/src/main/java/com/forgerock/authenticator/storage/ |
| H A D | ModelOpenHelper.java | 169 for (T oldObject : groupA) { 170 if (!containsMatching(groupB, oldObject)) { 171 result.remove(oldObject);
|
| /forgerock/openidm-v4/openidm-core/src/main/java/org/forgerock/openidm/managed/ |
| H A D | ManagedObjectSet.java | 307 * @param oldObject the old object value 312 JsonValue oldObject, JsonValue newObject) { 316 scriptBindings.put("oldObject", oldObject.getObject()); 311 prepareScriptBindings(Context context, Request request, String resourceId, JsonValue oldObject, JsonValue newObject) argument
|
Completed in 35 milliseconds