Searched defs:that (Results 1 - 25 of 92) sorted by relevance

1234

/forgerock/opendj2/src/server/org/opends/server/backends/jeb/
H A DEntryID.java105 * @param that the Object to be compared.
111 public int compareTo(EntryID that) throws ClassCastException argument
113 return this.id.compareTo(that.id);
119 * @param that the reference object with which to compare.
125 @Override public boolean equals(Object that) argument
127 if (that == null)
131 if (this == that)
135 if (!(that instanceof EntryID))
139 return this.id.equals(((EntryID)that).id);
H A DEntryIDSet.java81 * @param keyBytes The database key that contains this value.
129 * Create a new set of entry IDs that is the union of several entry ID sets.
442 * Retain those IDs that appear in the given set.
444 * @param that The set of IDs that are to be retained from this object.
446 public void retainAll(EntryIDSet that) argument
450 this.values = that.values;
451 this.undefinedSize = that.undefinedSize;
455 if (!that.isDefined())
463 long[] b = that
502 addAll(EntryIDSet that) argument
609 deleteAll(EntryIDSet that) argument
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/backends/jeb/
H A DEntryID.java106 * @param that the Object to be compared.
112 public int compareTo(EntryID that) throws ClassCastException argument
114 return this.id.compareTo(that.id);
120 * @param that the reference object with which to compare.
126 @Override public boolean equals(Object that) argument
128 if (that == null)
132 if (this == that)
136 if (!(that instanceof EntryID))
140 return this.id.equals(((EntryID)that).id);
H A DLongs.java35 * that can grow when necessary. A goal of this class is to avoid memory
142 * This is very much like Arrays.binarySearch except that it searches only
207 * @param that The set of elements to be added.
209 public void addAll(Longs that) argument
211 resize(this.count+that.count);
213 if (that.count == 0)
219 if (this.count == 0 || that.array[0] > this.array[this.count-1])
221 System.arraycopy(that.array, 0, this.array, this.count, that.count);
222 count += that
296 deleteAll(Longs that) argument
[all...]
/forgerock/opendj2.6.2/src/server/org/opends/server/backends/jeb/
H A DEntryID.java106 * @param that the Object to be compared.
112 public int compareTo(EntryID that) throws ClassCastException argument
114 return this.id.compareTo(that.id);
120 * @param that the reference object with which to compare.
126 @Override public boolean equals(Object that) argument
128 if (that == null)
132 if (this == that)
136 if (!(that instanceof EntryID))
140 return this.id.equals(((EntryID)that).id);
H A DLongs.java35 * that can grow when necessary. A goal of this class is to avoid memory
142 * This is very much like Arrays.binarySearch except that it searches only
207 * @param that The set of elements to be added.
209 public void addAll(Longs that) argument
211 resize(this.count+that.count);
213 if (that.count == 0)
219 if (this.count == 0 || that.array[0] > this.array[this.count-1])
221 System.arraycopy(that.array, 0, this.array, this.count, that.count);
222 count += that
296 deleteAll(Longs that) argument
[all...]
/forgerock/opendj2-hg/src/server/org/opends/server/backends/jeb/
H A DEntryID.java105 * @param that the Object to be compared.
111 public int compareTo(EntryID that) throws ClassCastException argument
113 return this.id.compareTo(that.id);
119 * @param that the reference object with which to compare.
125 @Override public boolean equals(Object that) argument
127 if (that == null)
131 if (this == that)
135 if (!(that instanceof EntryID))
139 return this.id.equals(((EntryID)that).id);
/forgerock/opendj2-jel-hg/src/server/org/opends/server/backends/jeb/
H A DEntryID.java106 * @param that the Object to be compared.
112 public int compareTo(EntryID that) throws ClassCastException argument
114 return this.id.compareTo(that.id);
120 * @param that the reference object with which to compare.
126 @Override public boolean equals(Object that) argument
128 if (that == null)
132 if (this == that)
136 if (!(that instanceof EntryID))
140 return this.id.equals(((EntryID)that).id);
H A DLongs.java35 * that can grow when necessary. A goal of this class is to avoid memory
142 * This is very much like Arrays.binarySearch except that it searches only
207 * @param that The set of elements to be added.
209 public void addAll(Longs that) argument
211 resize(this.count+that.count);
213 if (that.count == 0)
219 if (this.count == 0 || that.array[0] > this.array[this.count-1])
221 System.arraycopy(that.array, 0, this.array, this.count, that.count);
222 count += that
296 deleteAll(Longs that) argument
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/entitlement/util/
H A DSearchAttribute.java23 * A representation of a policy attribute that can be searched for. Policy framework attributes are stored
34 * @param ldapAttribute The name of the LDAP attribute that attribute will be stored in.
71 public boolean equals(Object that) { argument
72 return this == that || (that instanceof SearchAttribute &&
74 .append(this.attributeName, ((SearchAttribute) that).attributeName)
75 .append(this.ldapAttribute, ((SearchAttribute) that).ldapAttribute)
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/
H A DEntryID.java91 * @param that the Object to be compared.
98 public int compareTo(EntryID that) throws ClassCastException argument
100 final long result = this.id - that.id;
115 * @param that the reference object with which to compare.
122 public boolean equals(Object that) argument
124 if (this == that)
128 if (!(that instanceof EntryID))
132 return this.id == ((EntryID) that).id;
/forgerock/openam/openam-core/src/main/java/com/sun/identity/entitlement/util/
H A DSearchAttribute.java23 * A representation of a policy attribute that can be searched for. Policy framework attributes are stored
34 * @param ldapAttribute The name of the LDAP attribute that attribute will be stored in.
71 public boolean equals(Object that) { argument
72 return this == that || (that instanceof SearchAttribute &&
74 .append(this.attributeName, ((SearchAttribute) that).attributeName)
75 .append(this.ldapAttribute, ((SearchAttribute) that).ldapAttribute)
/forgerock/opendj-b2.6/src/server/org/opends/server/protocols/jmx/
H A DDirectoryRMIServerSocketFactory.java107 * Creates a server socket that accepts SSL connections configured according
157 * if it adds instance state that affects equality.
173 DirectoryRMIServerSocketFactory that =
175 return (getClass().equals(that.getClass()) && checkParameters(that));
180 * @param that the input parameter
183 private boolean checkParameters(DirectoryRMIServerSocketFactory that) argument
185 if (needClientCertificate != that.needClientCertificate)
188 if (!sslSocketFactory.equals(that.sslSocketFactory))
/forgerock/opendj2/src/server/org/opends/server/protocols/jmx/
H A DDirectoryRMIServerSocketFactory.java106 * Creates a server socket that accepts SSL connections configured according
156 * if it adds instance state that affects equality.
172 DirectoryRMIServerSocketFactory that =
174 return (getClass().equals(that.getClass()) && checkParameters(that));
179 * @param that the input parameter
182 private boolean checkParameters(DirectoryRMIServerSocketFactory that) argument
184 if (needClientCertificate != that.needClientCertificate)
187 if (!sslSocketFactory.equals(that.sslSocketFactory))
/forgerock/opendj2/src/server/org/opends/server/replication/server/changelog/file/
H A DRecord.java105 public boolean equals(Object that) argument
107 if (this == that)
111 if (!(that instanceof Record))
115 Record<?, ?> other = (Record<?, ?>) that;
/forgerock/opendj2.6.2/src/server/org/opends/server/protocols/jmx/
H A DDirectoryRMIServerSocketFactory.java107 * Creates a server socket that accepts SSL connections configured according
157 * if it adds instance state that affects equality.
173 DirectoryRMIServerSocketFactory that =
175 return (getClass().equals(that.getClass()) && checkParameters(that));
180 * @param that the input parameter
183 private boolean checkParameters(DirectoryRMIServerSocketFactory that) argument
185 if (needClientCertificate != that.needClientCertificate)
188 if (!sslSocketFactory.equals(that.sslSocketFactory))
/forgerock/opendj2-jel-hg/src/server/org/opends/server/protocols/jmx/
H A DDirectoryRMIServerSocketFactory.java107 * Creates a server socket that accepts SSL connections configured according
157 * if it adds instance state that affects equality.
173 DirectoryRMIServerSocketFactory that =
175 return (getClass().equals(that.getClass()) && checkParameters(that));
180 * @param that the input parameter
183 private boolean checkParameters(DirectoryRMIServerSocketFactory that) argument
185 if (needClientCertificate != that.needClientCertificate)
188 if (!sslSocketFactory.equals(that.sslSocketFactory))
/forgerock/opendj2-hg/src/server/org/opends/server/protocols/jmx/
H A DDirectoryRMIServerSocketFactory.java106 * Creates a server socket that accepts SSL connections configured according
156 * if it adds instance state that affects equality.
172 DirectoryRMIServerSocketFactory that =
174 return (getClass().equals(that.getClass()) && checkParameters(that));
179 * @param that the input parameter
182 private boolean checkParameters(DirectoryRMIServerSocketFactory that) argument
184 if (needClientCertificate != that.needClientCertificate)
187 if (!sslSocketFactory.equals(that.sslSocketFactory))
/forgerock/opendj2-hg/src/server/org/opends/server/replication/server/changelog/file/
H A DRecord.java105 public boolean equals(Object that) argument
107 if (this == that)
111 if (!(that instanceof Record))
115 Record<?, ?> other = (Record<?, ?>) that;
/forgerock/openam-v13/openam-sts/openam-rest-sts/src/main/java/org/forgerock/openam/sts/rest/token/validator/
H A DRestTokenTransformValidatorResult.java30 * Note that ultimately, RestTokenProviders will obtain the OpenAM session id from the ThreadLocalAMTokenCache, to support
33 * RestTokenTransformValidator invocations, so that the caching of the session id does not have to be the responsibility of these
74 RestTokenTransformValidatorResult that = (RestTokenTransformValidatorResult) o;
75 return Objects.equal(principal, that.principal) && amSessionId.equals(that.amSessionId)
76 && additionalStateEqual(that);
79 private boolean additionalStateEqual(RestTokenTransformValidatorResult that) { argument
80 if ((this.additionalState != null) && (that.additionalState != null)) {
81 return this.additionalState.toString().equals(that.additionalState.toString());
82 } else if ((this.additionalState == null) && (that
[all...]
/forgerock/openam-v13/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/rest/wrappers/
H A DApplicationTypeWrapper.java33 * parts of that class to the Jackson {@link ObjectMapper} via annotations.
92 public int compareTo(ApplicationTypeWrapper that) { argument
93 return this.getName().compareTo(that.getName());
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/protocols/jmx/
H A DDirectoryRMIServerSocketFactory.java102 * Creates a server socket that accepts SSL connections configured according
152 * if it adds instance state that affects equality.
170 DirectoryRMIServerSocketFactory that =
172 return getClass().equals(that.getClass()) && checkParameters(that);
177 * @param that the input parameter
180 private boolean checkParameters(DirectoryRMIServerSocketFactory that) argument
182 return needClientCertificate == that.needClientCertificate
183 && sslSocketFactory.equals(that.sslSocketFactory);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/replication/server/changelog/file/
H A DRecord.java119 public boolean equals(Object that) argument
121 if (this == that)
125 if (!(that instanceof Record))
129 Record<?, ?> other = (Record<?, ?>) that;
/forgerock/openam/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/rest/wrappers/
H A DApplicationTypeWrapper.java33 * parts of that class to the Jackson {@link ObjectMapper} via annotations.
92 public int compareTo(ApplicationTypeWrapper that) { argument
93 return this.getName().compareTo(that.getName());
/forgerock/openam/openam-sts/openam-rest-sts/src/main/java/org/forgerock/openam/sts/rest/token/validator/
H A DRestTokenTransformValidatorResult.java30 * Note that ultimately, RestTokenProviders will obtain the OpenAM session id from the ThreadLocalAMTokenCache, to support
33 * RestTokenTransformValidator invocations, so that the caching of the session id does not have to be the responsibility of these
74 RestTokenTransformValidatorResult that = (RestTokenTransformValidatorResult) o;
75 return Objects.equal(principal, that.principal) && amSessionId.equals(that.amSessionId)
76 && additionalStateEqual(that);
79 private boolean additionalStateEqual(RestTokenTransformValidatorResult that) { argument
80 if ((this.additionalState != null) && (that.additionalState != null)) {
81 return this.additionalState.toString().equals(that.additionalState.toString());
82 } else if ((this.additionalState == null) && (that
[all...]

Completed in 95 milliseconds

1234