/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/authenticator-android-v2/app/src/main/java/com/forgerock/authenticator/model/ |
H A D | SortedList.java | 30 public boolean add(T object) { argument 31 boolean result = super.add(object);
|
H A D | ModelObject.java | 31 * Default value for ids, indicating that the object has not been stored. 46 * Provides access to the IdentityModel that this object is a part of. 54 * Determines if the object has been stored. 55 * @return True if the object has been stored, false otherwise. 60 * Adds the object to the database if it has not been stored, otherwise updates it. 61 * Should not be called from outside the object model. 72 * Deletes the object from the database. Should not be called from outside the object model. 77 * Gets an opaque reference to this object. 78 * @return An opaque reference to this object 102 matches(T object) argument [all...] |
/forgerock/openidm-v4/openidm-quartz-fragment/src/main/java/org/forgerock/openidm/quartz/impl/ |
H A D | RepoJobStoreUtils.java | 40 * Converts a serializable object into a String. 42 * @param object the object to serialize. 43 * @return a string representation of the serialized object. 46 public static String serialize(Serializable object) throws JobPersistenceException { argument 50 oos.writeObject(object); 61 * Converts a String representation of a serialized object back 62 * into an object. 64 * @param str the representation of the serialized object 65 * @return the deserialized object [all...] |
/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-v13/openam-restlet/src/main/java/org/forgerock/openam/rest/representations/ |
H A D | JacksonRepresentationFactory.java | 46 * Create a {@code JacksonRepresentation} using the factory-provided object mapper. 48 * @param object The object to be represented. 49 * @param <T> The type of the object being represented. 52 public <T> JacksonRepresentation<T> create(T object) { argument 53 JacksonRepresentation<T> representation = new JacksonRepresentation<>(object); 59 * Create a {@code JacksonRepresentation} using the factory-provided object mapper. 63 * @param <T> The type of the object being represented.
|
/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-core/src/main/java/org/forgerock/openam/cts/utils/ |
H A D | JSONSerialisation.java | 31 * Note: This serialisation mechanism uses Jackson's ability to detect fields in an object to serialise. 40 * key object, which may be suitable in certain cases. 59 * Serialise an object to JSON. 61 * @param <T> The generic type of the passed in object. 62 * @param object Non null object to serialise. 65 public <T> String serialise(T object) { argument 67 String value = mapper.writeValueAsString(object); 73 object.getClass().getSimpleName(), 74 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-scripting/src/main/java/org/forgerock/openam/scripting/ |
H A D | ScriptEvaluator.java | 30 * Evaluates the given script object using an appropriate script engine for the language of the script. Any 56 * Binds the given object to the given variable name in the global scope of all scripts evaluated via this 58 * be available to all scripts. For per-script state to initialise, use the bindings element on the script object 61 * @param name the name of the variable to bind the object to. 62 * @param object the object to bind into the global scope of all scripts. 63 * @throws java.lang.NullPointerException if either name or object is empty. 66 void bindVariableInGlobalScope(String name, Object object); argument
|
H A D | StandardScriptEvaluator.java | 65 public void bindVariableInGlobalScope(final String name, final Object object) { argument 66 Reject.ifNull(name, object); 67 scriptEngineManager.put(name, object);
|
/forgerock/openam-v13/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/utils/indextree/nodecontext/ |
H A D | ContextKey.java | 62 public final boolean equals(Object object) { argument 63 return super.equals(object);
|
/forgerock/openam/openam-restlet/src/main/java/org/forgerock/openam/rest/representations/ |
H A D | JacksonRepresentationFactory.java | 46 * Create a {@code JacksonRepresentation} using the factory-provided object mapper. 48 * @param object The object to be represented. 49 * @param <T> The type of the object being represented. 52 public <T> JacksonRepresentation<T> create(T object) { argument 53 JacksonRepresentation<T> representation = new JacksonRepresentation<>(object); 59 * Create a {@code JacksonRepresentation} using the factory-provided object mapper. 63 * @param <T> The type of the object being represented.
|
/forgerock/openam/openam-scripting/src/main/java/org/forgerock/openam/scripting/ |
H A D | ScriptEvaluator.java | 30 * Evaluates the given script object using an appropriate script engine for the language of the script. Any 56 * Binds the given object to the given variable name in the global scope of all scripts evaluated via this 58 * be available to all scripts. For per-script state to initialise, use the bindings element on the script object 61 * @param name the name of the variable to bind the object to. 62 * @param object the object to bind into the global scope of all scripts. 63 * @throws java.lang.NullPointerException if either name or object is empty. 66 void bindVariableInGlobalScope(String name, Object object); argument
|
/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-core/src/main/java/org/forgerock/openam/cts/utils/ |
H A D | JSONSerialisation.java | 31 * Note: This serialisation mechanism uses Jackson's ability to detect fields in an object to serialise. 40 * key object, which may be suitable in certain cases. 59 * Serialise an object to JSON. 61 * @param <T> The generic type of the passed in object. 62 * @param object Non null object to serialise. 65 public <T> String serialise(T object) { argument 67 String value = mapper.writeValueAsString(object); 73 object.getClass().getSimpleName(), 74 object), [all...] |
/forgerock/openam/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/utils/indextree/nodecontext/ |
H A D | ContextKey.java | 62 public final boolean equals(Object object) { argument 63 return super.equals(object);
|
/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-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/sun/identity/authentication/config/ |
H A D | AMSDKEventListener.java | 83 // process object change 105 // process object change 128 // process object change 151 * Returns object to be listened. 153 * @return object to be listened. 160 * Sets listened object. 162 * @param object Object to listen to. 164 public void setListenedObject(AMObject object) { argument 165 amObject = object;
|
/forgerock/jee-agents-v3.5/jee-agents-sdk/src/main/java/com/sun/identity/agents/util/ |
H A D | ConstrainedSelection.java | 62 public boolean equals(Object object) { argument 65 if (object != null && (getClass().equals(object.getClass()))) { 66 if (getIntValue() == ((ConstrainedSelection)object).getIntValue()){
|
/forgerock/openam-v13/openam-tools/openam-installtools/src/main/java/com/sun/identity/install/tools/util/ |
H A D | ResultStatus.java | 57 public boolean equals(Object object) { argument 60 if (object != null && (getClass().equals(object.getClass()))) { 61 if (getIntValue() == ((ResultStatus) object).getIntValue()) {
|
/forgerock/openidm-v4/openidm-provisioner-openicf/src/main/java/org/forgerock/openidm/provisioner/openicf/impl/ |
H A D | OperationHelperBuilder.java | 65 public OperationHelper build(String objectType, JsonValue object, CryptoService cryptoService) throws ResourceException { argument 68 throw new BadRequestException("Unsupported object type: " + objectType + " not in supported types" + supportedObjectTypes.keySet()); 73 // if (null != object.get("_configuration")) {
|