Searched refs:hc (Results 1 - 25 of 51) sorted by relevance

123

/forgerock/openam-v13/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/conditions/environment/
H A DSessionPropertyCondition.java296 int hc = super.hashCode();
297 hc = 31 * hc + (ignoreValueCase ? 1 : 0);
300 hc = 31 * hc + properties.hashCode();
302 return hc;
305 hc = 31*hc + CollectionUtils.createHashForCaseInsensitiveMapOfSetOfStrings(this.properties);
306 return hc;
H A DIPvXCondition.java588 int hc = super.hashCode();
590 hc = 31*hc + version.toString().hashCode();
593 hc = 31*hc + ipRange.hashCode();
596 hc = 31*hc + ipList.hashCode();
599 hc = 31*hc + dnsName.hashCode();
602 hc
[all...]
H A DSimpleTimeCondition.java655 int hc = super.hashCode();
656 hc = 31*hc + startHour;
657 hc = 31*hc + startMinute;
658 hc = 31*hc + endHour;
659 hc = 31*hc + endMinute;
660 hc
[all...]
H A DAuthSchemeCondition.java439 int hc = super.hashCode();
440 hc = 31*hc + (appIdleTimeoutEnabled?1:0);
442 hc = 31*hc + authScheme.hashCode();
445 hc = 31*hc + applicationIdleTimeout.hashCode();
448 hc = 31*hc + applicationName.hashCode();
451 hc
[all...]
H A DAuthenticateToRealmCondition.java200 int hc = super.hashCode();
203 hc = 31*hc + authenticateToRealm.toLowerCase().hashCode();
205 return hc;
H A DLDAPFilterCondition.java170 int hc = super.hashCode();
173 hc = 31*hc + ldapFilter.hashCode();
175 return hc;
H A DAuthenticateToServiceCondition.java243 int hc = super.hashCode();
245 hc = 31*hc + authenticateToService.hashCode();
248 hc = 31*hc + (realmEmpty?1:0);
249 return hc;
/forgerock/openam/openam-entitlements/src/main/java/org/forgerock/openam/entitlement/conditions/environment/
H A DSessionPropertyCondition.java296 int hc = super.hashCode();
297 hc = 31 * hc + (ignoreValueCase ? 1 : 0);
300 hc = 31 * hc + properties.hashCode();
302 return hc;
305 hc = 31*hc + CollectionUtils.createHashForCaseInsensitiveMapOfSetOfStrings(this.properties);
306 return hc;
H A DIPvXCondition.java588 int hc = super.hashCode();
590 hc = 31*hc + version.toString().hashCode();
593 hc = 31*hc + ipRange.hashCode();
596 hc = 31*hc + ipList.hashCode();
599 hc = 31*hc + dnsName.hashCode();
602 hc
[all...]
H A DSimpleTimeCondition.java654 int hc = super.hashCode();
655 hc = 31*hc + startHour;
656 hc = 31*hc + startMinute;
657 hc = 31*hc + endHour;
658 hc = 31*hc + endMinute;
659 hc
[all...]
H A DAuthSchemeCondition.java439 int hc = super.hashCode();
440 hc = 31*hc + (appIdleTimeoutEnabled?1:0);
442 hc = 31*hc + authScheme.hashCode();
445 hc = 31*hc + applicationIdleTimeout.hashCode();
448 hc = 31*hc + applicationName.hashCode();
451 hc
[all...]
H A DAuthenticateToRealmCondition.java200 int hc = super.hashCode();
203 hc = 31*hc + authenticateToRealm.toLowerCase().hashCode();
205 return hc;
H A DLDAPFilterCondition.java170 int hc = super.hashCode();
173 hc = 31*hc + ldapFilter.hashCode();
175 return hc;
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/entitlement/opensso/
H A DPolicyCondition.java265 int hc = super.hashCode();
267 hc = 31*hc + className.hashCode();
270 hc = 31*hc + name.hashCode();
273 hc = 31*hc + properties.hashCode();
275 return hc;
/forgerock/openam-v13/openam-entitlements/src/main/java/com/sun/identity/entitlement/
H A DNumericAttributeCondition.java239 int hc = super.hashCode();
241 hc = 31*hc + attributeName.hashCode();
243 hc = 31*hc + operator.hashCode();
244 hc = 31*hc + (value != +0.0f ? Float.floatToIntBits(value) : 0);
245 return hc;
H A DStringAttributeCondition.java205 int hc = super.hashCode();
207 hc = 31*hc + attributeName.hashCode();
209 hc = 31*hc + (bCaseSensitive ? 1 : 0);
212 hc = 31*hc + value.hashCode();
214 return hc;
/forgerock/openam/openam-core/src/main/java/com/sun/identity/entitlement/opensso/
H A DPolicyCondition.java265 int hc = super.hashCode();
267 hc = 31*hc + className.hashCode();
270 hc = 31*hc + name.hashCode();
273 hc = 31*hc + properties.hashCode();
275 return hc;
/forgerock/openam/openam-entitlements/src/main/java/com/sun/identity/entitlement/
H A DNumericAttributeCondition.java239 int hc = super.hashCode();
241 hc = 31*hc + attributeName.hashCode();
243 hc = 31*hc + operator.hashCode();
244 hc = 31*hc + (value != +0.0f ? Float.floatToIntBits(value) : 0);
245 return hc;
H A DStringAttributeCondition.java205 int hc = super.hashCode();
207 hc = 31*hc + attributeName.hashCode();
209 hc = 31*hc + (bCaseSensitive ? 1 : 0);
212 hc = 31*hc + value.hashCode();
214 return hc;
/forgerock/opendj2/src/quicksetup/org/opends/quicksetup/
H A DBuildInformation.java396 int hc = 11;
397 hc = 31 * hc + getMajorVersion().hashCode();
398 hc = 31 * hc + getMinorVersion().hashCode();
399 hc = 31 * hc + getPointVersion().hashCode();
400 hc = 31 * hc + getRevisionNumber().hashCode();
401 return hc;
[all...]
/forgerock/opendj-b2.6/src/quicksetup/org/opends/quicksetup/
H A DBuildInformation.java397 int hc = 11;
398 hc = 31 * hc + getMajorVersion().hashCode();
399 hc = 31 * hc + getMinorVersion().hashCode();
400 hc = 31 * hc + getPointVersion().hashCode();
401 hc = 31 * hc + getRevisionNumber().hashCode();
402 return hc;
[all...]
/forgerock/opendj2.6.2/src/quicksetup/org/opends/quicksetup/
H A DBuildInformation.java397 int hc = 11;
398 hc = 31 * hc + getMajorVersion().hashCode();
399 hc = 31 * hc + getMinorVersion().hashCode();
400 hc = 31 * hc + getPointVersion().hashCode();
401 hc = 31 * hc + getRevisionNumber().hashCode();
402 return hc;
[all...]
/forgerock/opendj2-hg/src/quicksetup/org/opends/quicksetup/
H A DBuildInformation.java396 int hc = 11;
397 hc = 31 * hc + getMajorVersion().hashCode();
398 hc = 31 * hc + getMinorVersion().hashCode();
399 hc = 31 * hc + getPointVersion().hashCode();
400 hc = 31 * hc + getRevisionNumber().hashCode();
401 return hc;
[all...]
/forgerock/opendj2-jel-hg/src/quicksetup/org/opends/quicksetup/
H A DBuildInformation.java402 int hc = 11;
403 hc = 31 * hc + getMajorVersion().hashCode();
404 hc = 31 * hc + getMinorVersion().hashCode();
405 hc = 31 * hc + getPointVersion().hashCode();
406 hc = 31 * hc + getRevisionNumber().hashCode();
407 return hc;
[all...]
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/quicksetup/
H A DBuildInformation.java369 int hc = 11;
370 hc = 31 * hc + getMajorVersion().hashCode();
371 hc = 31 * hc + getMinorVersion().hashCode();
372 hc = 31 * hc + getPointVersion().hashCode();
373 hc = 31 * hc + getRevision().hashCode();
374 return hc;
[all...]

Completed in 56 milliseconds

123