Searched defs:hashCode (Results 1 - 25 of 148) sorted by relevance

123456

/glassfish-3.1.2/connectors/javax.resource/src/main/java/javax/resource/spi/
H A DConnectionRequestInfo.java79 /** Returns the hashCode of the ConnectionRequestInfo.
84 int hashCode(); method in interface:ConnectionRequestInfo
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/connectors/authentication/
H A DRuntimeSecurityMap.java77 public int hashCode(){ method in class:RuntimeSecurityMap
78 return this.userMap.hashCode() + this.groupMap.hashCode();
/glassfish-3.1.2/connectors/javax.resource/src/main/java/javax/resource/cci/
H A DRecord.java120 int hashCode(); method in interface:Record
/glassfish-3.1.2/connectors/javax.resource/src/main/java/javax/resource/spi/security/
H A DGenericCredential.java137 int hashCode(); method in interface:GenericCredential
H A DPasswordCredential.java161 int hashCode() { method in class:PasswordCredential
169 return s.hashCode() + passwordHash;
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/server/
H A DHK2Dispatcher.java57 Field hashCode = null; field in class:HK2Dispatcher
67 hashCode = ThreadLocal.class.getDeclaredField("threadLocalHashCode");
68 hashCode.setAccessible(true);
101 entries.add(hashCode.getInt(e.get()));
102 //System.out.println("Hashcode = " + hashCode.get(e.get()));
135 if (!entries.contains(hashCode.getInt(e.get()))) {
136 //System.out.println("Added Thread local Hashcode = " + hashCode.get(e.get()));
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/
H A DDataSourcePropertyDescriptor.java85 public int hashCode() { method in class:DataSourcePropertyDescriptor
87 result = 37*result + getName().hashCode();
H A DFieldDescriptor.java97 public int hashCode() { method in class:FieldDescriptor
98 return this.getName().hashCode();
H A DResourcePrincipal.java54 static private final int NULL_HASH_CODE = Integer.valueOf(1).hashCode();
76 public int hashCode() { method in class:ResourcePrincipal
80 result += name.hashCode();
83 result += password.hashCode();
H A DSecurityRoleDescriptor.java89 public int hashCode() { method in class:SecurityRoleDescriptor
90 return this.getName().hashCode();
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/
H A DTimerPrimaryKey.java69 public int hashCode() method in class:TimerPrimaryKey
71 return timerId.hashCode();
/glassfish-3.1.2/tests/community/persistence/servlet-jpa-app/src/java/persistence/
H A DWebCustomer.java151 public int hashCode() { method in class:WebCustomer
153 hash += (this.custId != null ? this.custId.hashCode() : 0);
/glassfish-3.1.2/web/web-ha/src/main/java/org/glassfish/web/ha/authenticator/
H A DHASessionData.java67 public int hashCode() { method in class:HASessionData
70 hc = sessionId.hashCode() << 4;
73 hc = contextPath.hashCode();
/glassfish-3.1.2/web/web-naming/src/main/java/org/apache/naming/
H A DNamingEntry.java116 public int hashCode() { method in class:NamingEntry
117 return name.hashCode();
/glassfish-3.1.2/admin/monitor/src/main/java/com/sun/enterprise/admin/monitor/registry/
H A DMonitoringLevel.java120 public int hashCode() { method in class:MonitoringLevel
121 return this.name.hashCode();
/glassfish-3.1.2/appclient/server/core/src/main/java/org/glassfish/appclient/server/core/jws/servedcontent/
H A DFixedContent.java84 public int hashCode() { method in class:FixedContent
86 hash = 17 * hash + (this.file != null ? this.file.hashCode() : 0);
/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/logging/
H A DLogQueryResultImpl.java133 hashCode() method in class:LogQueryResultImpl
135 return ObjectUtil.hashCode( getFieldNames(), getEntries() );
/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/util/
H A DObjectUtil.java44 Provides a variety of useful utilities for computing hashCode().
53 public static int hashCode(final boolean value) method in class:ObjectUtil
58 public static int hashCode(final Object... items) method in class:ObjectUtil
64 result ^= hashCode(item);
69 public static int hashCode(final Object o) method in class:ObjectUtil
71 return o == null ? 0 : o.hashCode();
74 public static int hashCode(final long value) method in class:ObjectUtil
79 public static int hashCode(final double value) method in class:ObjectUtil
81 return new Double(value).hashCode();
/glassfish-3.1.2/common/common-util/src/main/java/org/glassfish/resource/common/
H A DPoolInfo.java125 public int hashCode(){ method in class:PoolInfo
128 result = 67 * result + name.hashCode();
130 result = 67 * result + applicationName.hashCode();
132 result = 67 * result + moduleName.hashCode();
H A DResourceInfo.java125 public int hashCode(){ method in class:ResourceInfo
128 result = 67 * result + name.hashCode();
130 result = 67 * result + applicationName.hashCode();
132 result = 67 * result + moduleName.hashCode();
/glassfish-3.1.2/common/common-util/src/main/java/org/glassfish/security/common/
H A DPrincipalImpl.java99 public int hashCode() { method in class:PrincipalImpl
100 return name.hashCode();
/glassfish-3.1.2/jdbc/jdbc-ra/jdbc-core/src/main/java/com/sun/gjc/spi/
H A DConnectionRequestInfo.java102 * @return hashCode.
104 public int hashCode() { method in class:ConnectionRequestInfo
106 return result.hashCode();
/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/auth/
H A DPrivilegeImpl.java63 * Returns the hashCode ..
65 public int hashCode() { method in class:PrivilegeImpl
66 return name.hashCode();
/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/auth/nonce/
H A DStringNonce.java65 public int hashCode(){ method in class:StringNonce
66 return nonce.hashCode();
/glassfish-3.1.2/webservices/jsr109-impl/src/main/java/org/glassfish/webservices/
H A DPortInfoImpl.java93 public int hashCode() { method in class:PortInfoImpl
94 return bindingId.toString().hashCode();

Completed in 309 milliseconds

123456