| /forgerock/openam-v13/openam-core/src/main/java/com/iplanet/services/ldap/aci/ |
| H A D | QualifiedCollection.java | 61 * Compares whether the passed object is equal to this object semantically. 65 * @param object 66 * the object that is to be compared for equality 67 * @return <code>true</code> if the passed object is equal to this object, 71 public boolean equals(Object object) { argument 73 if (object == this) { 75 } else if (object != null && object [all...] |
| /forgerock/openam-v13/openam-core/src/main/java/com/iplanet/sso/providers/dpro/ |
| H A D | SSOPrincipal.java | 44 * Creates a SSOPrincipal object 54 * Compares this principal to the specified object. Returns true 55 * if the object passed in matches the principal. 56 * @param Object The object to be compared 60 public boolean equals(Object object) { argument 61 if (this == object) { 63 } else if (object == null || getClass() != object.getClass()) { 66 return principal.equals(object.toString()); 70 * Returns the principal name of this object [all...] |
| H A D | SSOTokenIDImpl.java | 37 * identify a <code>SSOToken</code> object. 49 /** hashcode for the object*/ 53 * Creates a SSOTokenIDImpl object 72 * Compares this SessionID to the specified object. The result is true if 77 * Object - the object to compare this SessionID against. 80 public boolean equals(Object object) { argument 81 if (this == object) { 83 } else if (object == null || getClass() != object.getClass()) { 86 return SSOSessionID.equals(object); [all...] |
| /forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/profile/ |
| H A D | CacheObject.java | 45 public CacheObject(Object object) { argument 46 obj = object;
|
| /forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/context/ |
| H A D | ContextFactory.java | 59 * There are three ways to obtain an instance of a object type: 101 * The return object is immutable. 122 * The return object is immutable. 159 * The return object is immutable. 180 * The return object is immutable. 216 * The return object is immutable. 237 * The return object is immutable. 273 * The return object is immutable. 294 * The return object is immutable. 331 * The return object i [all...] |
| /forgerock/openam-v13/openam-shared/src/main/java/com/iplanet/sso/ |
| H A D | SSOTokenID.java | 33 * sign on token object. It contains a random string and the name of the server. 48 * Returns <code>true</code> if current object is equals to 49 * <code>object</code>. This are the conditions 51 * <li><code>object</code> is not null</li> 52 * <li>this instance and <code>object</code> have the same random string. 53 * <li>this instance and <code>object</code> have the same server name. 56 * @param object Object for comparison. 57 * @return <code>true</code> if current object is equals to 58 * <code>object</code>. 60 boolean equals(Object object); argument [all...] |
| /forgerock/openam-v13/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/common/util/object/ |
| H A D | flattenValues.js | 18 * @module org/forgerock/openam/ui/common/util/object/flattenValues 20 define("org/forgerock/openam/ui/common/util/object/flattenValues", [ 23 var exports = function (object) { 24 return _.mapValues(object, function (value) {
|
| /forgerock/openam-v13/openam-ui/openam-ui-ria/src/test/js/org/forgerock/openam/ui/common/util/object/ |
| H A D | flattenValuesTest.js | 18 "org/forgerock/openam/ui/common/util/object/flattenValues" 20 describe("org/forgerock/openam/ui/common/object/flattenValues", function () { 21 it("unwraps an object's single element array values", function () { 22 var object = { 28 expect(flattenValues(object)).to.be.eql({
|
| /forgerock/openidm-v4/openidm-ui/openidm-ui-admin/src/main/js/org/forgerock/openidm/ui/admin/settings/authentication/ |
| H A D | AuthenticationAbstractView.js | 60 * @param properties {array} - an array of strings representing the properties in the passed in object. 61 * @param object {object} - the object containing changes 63 setProperties: function(properties, object) { 65 if (_.isEmpty(object[prop]) && 66 !_.isNumber(object[prop]) && 67 !_.isBoolean(object[prop])) { 70 authenticationDataChanges.serverAuthContext[prop] = object[prop];
|
| /forgerock/openidm-v4/openidm-zip/src/main/resources/bin/defaults/script/roles/ |
| H A D | onDelete-roles.js | 29 /*global object */ 32 var users = openidm.query("managed/role/" + object._id + "/members", {"_queryFilter": "true"}, ["*"]).result;
|
| /forgerock/openidm-v4/openidm-zip/src/main/resources/bin/defaults/script/ui/ |
| H A D | onCreate-user-set-default-fields.js | 33 /*global object */ 35 if (!object.accountStatus) { 36 object.accountStatus = 'active'; 39 if (!object.authzRoles) { 40 object.authzRoles = [ 48 if (!object.password) { 51 object.password = require("crypto").generateRandomString([
|
| /forgerock/openidm-v4/openidm-zip/src/main/resources/samples/multiplepasswords/script/ |
| H A D | onCreate-user-custom.js | 18 /*global object, historyFields, historySize */ 20 if (!object.accountStatus) { 21 object.accountStatus = 'active'; 24 if(!object.authzRoles) { 25 object.authzRoles = [ 32 object.fieldHistory = {} 36 object.fieldHistory[field] = new Array(historySize); 38 if (object[field]) { 39 object.fieldHistory[field].shift(); 40 object [all...] |
| H A D | onUpdate-user-custom.js | 23 object.fieldHistory = oldObject.fieldHistory; 26 if (typeof object.fieldHistory[field] === "undefined") { 27 object.fieldHistory[field] = new Array(historySize); 31 newValue = object[field]; 43 object.fieldHistory[field].shift(); 44 object.fieldHistory[field].push(openidm.hash(object[field], "SHA-256"));
|
| H A D | set-additional-passwords.js | 22 /*global object */ 24 object = request.content; 28 if (additionalPasswordFields !== undefined && object.password !== undefined) { 32 if (!object.hasOwnProperty(field)) { 34 object[field] = object.password;
|
| /forgerock/openidm-v4/openidm-zip/src/main/resources/samples/usecase/script/ |
| H A D | onRetrieveManagedUser.js | 1 /*global object */ 3 object.active = (object.accountStatus.toLowerCase() === 'active')
|
| /forgerock/openidm-v4/openidm-zip/src/main/resources/samples/usecase/script/roles/ |
| H A D | effectiveRoles.js | 29 /*global object */ 31 logger.debug("Invoked effectiveRoles script on {} value: ", propertyName, object); 38 var directRoles = object[rolesPropName]; 44 if (object.department === 'Human Resources') { 47 if (object.department === 'Production Planning') { 50 if (object.department === 'Sales & Distribution') { 53 if (object.department === 'Treasury & Payments') {
|
| /forgerock/openam/openam-shared/src/main/java/com/iplanet/sso/ |
| H A D | SSOTokenID.java | 33 * sign on token object. It contains a random string and the name of the server. 48 * Returns <code>true</code> if current object is equals to 49 * <code>object</code>. This are the conditions 51 * <li><code>object</code> is not null</li> 52 * <li>this instance and <code>object</code> have the same random string. 53 * <li>this instance and <code>object</code> have the same server name. 56 * @param object Object for comparison. 57 * @return <code>true</code> if current object is equals to 58 * <code>object</code>. 60 boolean equals(Object object); argument [all...] |
| /forgerock/openam/openam-core/src/main/java/com/iplanet/services/ldap/aci/ |
| H A D | QualifiedCollection.java | 61 * Compares whether the passed object is equal to this object semantically. 65 * @param object 66 * the object that is to be compared for equality 67 * @return <code>true</code> if the passed object is equal to this object, 71 public boolean equals(Object object) { argument 73 if (object == this) { 75 } else if (object != null && object [all...] |
| /forgerock/openam/openam-core/src/main/java/com/iplanet/sso/providers/dpro/ |
| H A D | SSOPrincipal.java | 44 * Creates a SSOPrincipal object 54 * Compares this principal to the specified object. Returns true 55 * if the object passed in matches the principal. 56 * @param Object The object to be compared 60 public boolean equals(Object object) { argument 61 if (this == object) { 63 } else if (object == null || getClass() != object.getClass()) { 66 return principal.equals(object.toString()); 70 * Returns the principal name of this object [all...] |
| H A D | SSOTokenIDImpl.java | 37 * identify a <code>SSOToken</code> object. 49 /** hashcode for the object*/ 53 * Creates a SSOTokenIDImpl object 72 * Compares this SessionID to the specified object. The result is true if 77 * Object - the object to compare this SessionID against. 80 public boolean equals(Object object) { argument 81 if (this == object) { 83 } else if (object == null || getClass() != object.getClass()) { 86 return SSOSessionID.equals(object); [all...] |
| /forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml2/profile/ |
| H A D | CacheObject.java | 48 public CacheObject(Object object) { argument 49 obj = object;
|
| /forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/context/ |
| H A D | ContextFactory.java | 59 * There are three ways to obtain an instance of a object type: 101 * The return object is immutable. 122 * The return object is immutable. 159 * The return object is immutable. 180 * The return object is immutable. 216 * The return object is immutable. 237 * The return object is immutable. 273 * The return object is immutable. 294 * The return object is immutable. 331 * The return object i [all...] |
| /forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/common/models/ |
| H A D | cleanJSONSchema.js | 21 * Determines whether the specified object is of type <code>object</code> 22 * @param {Object} object Object to determine the type of 23 * @returns {Boolean} Whether the object is of type <code>object</code> 25 function isObjectType (object) { 26 return object.type === "object"; 30 * Recursively invokes the specified functions over each object's properties 31 * @param {Object} object Objec [all...] |
| /forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/common/util/object/ |
| H A D | flattenValues.js | 18 * @module org/forgerock/openam/ui/common/util/object/flattenValues 23 var exports = function (object) { 24 return _.mapValues(object, function (value) {
|
| /forgerock/openam/openam-ui/openam-ui-ria/src/test/js/org/forgerock/openam/ui/common/util/object/ |
| H A D | flattenValuesTest.js | 18 "org/forgerock/openam/ui/common/util/object/flattenValues" 20 describe("org/forgerock/openam/ui/common/object/flattenValues", () => { 21 it("unwraps an object's single element array values", () => { 22 const object = { 28 expect(flattenValues(object)).to.be.eql({
|