Searched defs:other (Results 1 - 25 of 218) sorted by relevance

123456789

/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/dpro/session/
H A DTokenRestriction.java50 * @param other The object to be used for comparison.
51 * @return <code>true</code> if this object is the same as the other argument; <code>false</code> otherwise.
53 public boolean equals(Object other); argument
/forgerock/openam-v13/openam-sts/openam-common-sts/src/main/java/org/forgerock/openam/sts/
H A DSTSPrincipal.java44 public boolean equals(Object other) { argument
45 if (other instanceof STSPrincipal) {
46 STSPrincipal otherPrincipal = (STSPrincipal)other;
/forgerock/openidm-v4/openidm-provisioner/src/main/java/org/forgerock/openidm/provisioner/
H A DSystemIdentifier.java36 * Compare this and the {@code other} instance and returns true if both identifies the same
39 * @param other
42 boolean is(SystemIdentifier other); argument
H A DSimpleSystemIdentifier.java58 public boolean is(SystemIdentifier other) { argument
59 return equals(other);
/forgerock/openam/openam-core/src/main/java/com/iplanet/dpro/session/
H A DTokenRestriction.java50 * @param other The object to be used for comparison.
51 * @return <code>true</code> if this object is the same as the other argument; <code>false</code> otherwise.
53 public boolean equals(Object other); argument
/forgerock/openam/openam-sts/openam-common-sts/src/main/java/org/forgerock/openam/sts/
H A DSTSPrincipal.java44 public boolean equals(Object other) { argument
45 if (other instanceof STSPrincipal) {
46 STSPrincipal otherPrincipal = (STSPrincipal)other;
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/entitlement/
H A DResourceSaveIndexes.java92 * Adds all resource indexes from other object.
94 * @param other the other resource save indexes object.
96 public void addAll(ResourceSaveIndexes other) { argument
97 this.hostIndexes.addAll(other.hostIndexes);
98 this.pathIndexes.addAll(other.pathIndexes);
99 this.parentPath.addAll(other.parentPath);
H A DResourceSearchIndexes.java68 * @param other Other indexes
70 public void addAll(ResourceSearchIndexes other) { argument
71 this.hostIndexes.addAll(other.hostIndexes);
72 this.pathIndexes.addAll(other.pathIndexes);
73 this.parentPathIndexes.addAll(other.parentPathIndexes);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/session/util/
H A DPrincipalTokenRestriction.java68 * if the argument is not null, and <code>other</code> is the same as this
71 * @param other -
76 public boolean equals(Object other) { argument
77 return other != null && (other instanceof PrincipalTokenRestriction)
78 && this.dn.equals(((PrincipalTokenRestriction) other).dn);
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/sm/config/
H A DCacheKey.java45 public boolean equals(Object other) { argument
46 if (this == other) {
49 if (!(other instanceof CacheKey)) {
52 CacheKey cacheKey = (CacheKey) other;
/forgerock/openam-v13/openam-shared/src/main/java/org/forgerock/openam/shared/security/crypto/
H A DKeyPairProviderImpl.java79 public boolean equals(Object other) { argument
80 if (this == other) {
83 if (!(other instanceof CacheKey)) {
86 CacheKey cacheKey = (CacheKey) other;
/forgerock/openam-v13/openam-sts/openam-client-sts/src/main/java/org/forgerock/openam/sts/token/model/
H A DOpenAMSessionToken.java43 public boolean equals(Object other) { argument
44 if (other instanceof OpenAMSessionToken) {
45 OpenAMSessionToken otherToken = (OpenAMSessionToken)other;
H A DOpenIdConnectIdToken.java39 public boolean equals(Object other) { argument
40 if (other instanceof OpenIdConnectIdToken) {
41 OpenIdConnectIdToken otherIdToken = (OpenIdConnectIdToken)other;
/forgerock/openam-v13/openam-sts/openam-client-sts/src/main/java/org/forgerock/openam/sts/user/invocation/
H A DX509TokenState.java44 public boolean equals(Object other) { argument
45 return other instanceof X509TokenState;
/forgerock/openam-v13/openam-sts/openam-soap-sts/openam-soap-sts-client/src/main/java/org/forgerock/openam/sts/soap/
H A DEndpointSpecification.java51 public boolean equals(Object other) { argument
52 if (this == other) {
55 if (other instanceof EndpointSpecification) {
56 EndpointSpecification otherSpec = (EndpointSpecification)other;
/forgerock/openidm-v4/openidm-maintenance/src/main/java/org/forgerock/openidm/maintenance/upgrade/
H A DProductVersion.java39 * @param other the ProductVersion to compare to this
42 public boolean isSameAs(ProductVersion other) { argument
43 return version.compareTo(other.version) == 0
44 && revision.equals(other.revision);
/forgerock/openam/openam-shared/src/main/java/org/forgerock/openam/shared/security/crypto/
H A DKeyPairProviderImpl.java79 public boolean equals(Object other) { argument
80 if (this == other) {
83 if (!(other instanceof CacheKey)) {
86 CacheKey cacheKey = (CacheKey) other;
/forgerock/openam/openam-sts/openam-client-sts/src/main/java/org/forgerock/openam/sts/token/model/
H A DOpenAMSessionToken.java43 public boolean equals(Object other) { argument
44 if (other instanceof OpenAMSessionToken) {
45 OpenAMSessionToken otherToken = (OpenAMSessionToken)other;
H A DOpenIdConnectIdToken.java39 public boolean equals(Object other) { argument
40 if (other instanceof OpenIdConnectIdToken) {
41 OpenIdConnectIdToken otherIdToken = (OpenIdConnectIdToken)other;
/forgerock/openam/openam-sts/openam-client-sts/src/main/java/org/forgerock/openam/sts/user/invocation/
H A DX509TokenState.java44 public boolean equals(Object other) { argument
45 return other instanceof X509TokenState;
/forgerock/openam/openam-core/src/main/java/com/sun/identity/entitlement/
H A DResourceSaveIndexes.java92 * Adds all resource indexes from other object.
94 * @param other the other resource save indexes object.
96 public void addAll(ResourceSaveIndexes other) { argument
97 this.hostIndexes.addAll(other.hostIndexes);
98 this.pathIndexes.addAll(other.pathIndexes);
99 this.parentPath.addAll(other.parentPath);
H A DResourceSearchIndexes.java68 * @param other Other indexes
70 public void addAll(ResourceSearchIndexes other) { argument
71 this.hostIndexes.addAll(other.hostIndexes);
72 this.pathIndexes.addAll(other.pathIndexes);
73 this.parentPathIndexes.addAll(other.parentPathIndexes);
/forgerock/openam/openam-core/src/main/java/com/sun/identity/session/util/
H A DPrincipalTokenRestriction.java68 * if the argument is not null, and <code>other</code> is the same as this
71 * @param other -
76 public boolean equals(Object other) { argument
77 return other != null && (other instanceof PrincipalTokenRestriction)
78 && this.dn.equals(((PrincipalTokenRestriction) other).dn);
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/sm/config/
H A DCacheKey.java45 public boolean equals(Object other) { argument
46 if (this == other) {
49 if (!(other instanceof CacheKey)) {
52 CacheKey cacheKey = (CacheKey) other;
/forgerock/openam/openam-notifications/src/main/java/org/forgerock/openam/notifications/
H A DTopic.java54 public boolean equals(Object other) { argument
55 if (this == other) {
59 if (!(other instanceof Topic)) {
63 Topic topic = (Topic) other;

Completed in 85 milliseconds

123456789