Searched refs:other (Results 1 - 25 of 407) sorted by relevance

1234567891011>>

/forgerock/openam-v13/openam-authentication/deviceprint/module/src/main/java/org/forgerock/openam/authentication/modules/deviceprint/model/
H A DDevicePrint.java224 * If the attribute on this Device Print is null then the attribute value from the other Device Print is copied
227 * @param other The other Device Print to merge in.
229 public void merge(DevicePrint other) { argument
231 setScreenColourDepth(other.getScreenColourDepth());
234 setScreenHeight(other.getScreenHeight());
237 setScreenWidth(other.getScreenWidth());
240 setInstalledPlugins(other.getInstalledPlugins());
243 setInstalledFonts(other.getInstalledFonts());
246 setTimezone(other
[all...]
/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-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-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
/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;
/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-authentication/openam-auth-oauth2/src/main/java/org/forgerock/openam/authentication/modules/oauth2/
H A DOAuthPrincipal.java50 final OAuthPrincipal other = (OAuthPrincipal) obj;
51 if ((this.name == null) ? (other.name != null) : !this.name.equals(other.name)) {
/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-authentication/openam-auth-oauth2/src/main/java/org/forgerock/openam/authentication/modules/oauth2/
H A DOAuthPrincipal.java50 final OAuthPrincipal other = (OAuthPrincipal) obj;
51 if ((this.name == null) ? (other.name != null) : !this.name.equals(other.name)) {
/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-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/openam-v13/openam-authentication/openam-auth-radius/src/main/java/com/sun/identity/authentication/modules/radius/
H A DRADIUSServer.java79 final RADIUSServer other = (RADIUSServer) obj;
81 if ((this.host == null) ? (other.host != null) : !this.host.equals(other.host)) {
84 return (this.port == other.port);
/forgerock/openam/openam-authentication/openam-auth-radius/src/main/java/com/sun/identity/authentication/modules/radius/
H A DRADIUSServer.java79 final RADIUSServer other = (RADIUSServer) obj;
81 if ((this.host == null) ? (other.host != null) : !this.host.equals(other.host)) {
84 return (this.port == other.port);
/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-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/opendj2/src/server/org/opends/server/replication/server/changelog/file/
H A DRecord.java115 Record<?, ?> other = (Record<?, ?>) that;
116 final boolean keyEquals = key == null ? other.key == null : key.equals(other.key);
121 return value == null ? other.value == null : value.equals(other.value);

Completed in 39 milliseconds

1234567891011>>