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

12345

/glassfish-3.1.2/connectors/javax.resource/src/main/java/javax/resource/spi/
H A DConnectionRequestInfo.java77 boolean equals(Object other); argument
H A DManagedConnectionFactory.java167 * created the log writer is initially null, in other words, logging is
194 * created the log writer is initially null, in other words, logging is
215 public boolean equals(Object other); argument
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/
H A DActivationConfigDescriptor.java61 public ActivationConfigDescriptor(ActivationConfigDescriptor other) { argument
62 activationConfig = new OrderedSet(other.activationConfig);
H A DAuthorizationConstraintImpl.java72 public AuthorizationConstraintImpl(AuthorizationConstraintImpl other) { argument
73 this.securityRoles = new HashSet(other.getSecurityRoleSet());
H A DLocaleEncodingMappingDescriptor.java59 public LocaleEncodingMappingDescriptor(LocaleEncodingMappingDescriptor other) { argument
60 super(other);
61 locale = other.locale;
62 encoding = other.encoding;
H A DLocaleEncodingMappingListDescriptor.java59 public LocaleEncodingMappingListDescriptor(LocaleEncodingMappingListDescriptor other) { argument
60 super(other);
61 if (other.list != null) {
63 for (Iterator i = other.list.iterator(); i.hasNext();) {
H A DMimeMappingDescriptor.java57 public MimeMappingDescriptor(MimeMappingDescriptor other) { argument
58 // super(other);
59 extension = other.extension;
60 mimeType = other.mimeType;
H A DNameValuePairDescriptor.java55 public NameValuePairDescriptor(NameValuePairDescriptor other) { argument
56 super(other);
57 value = other.value;
H A DPersistentFieldInfo.java58 public PersistentFieldInfo(PersistentFieldInfo other) { argument
59 field = other.field;
60 name = other.name;
61 type = other.type;
62 relatedName = other.relatedName;
63 relatedObj = other.relatedObj;
H A DRespectBinding.java55 public RespectBinding(RespectBinding other) { argument
56 super(other);
57 enabled = other.enabled;
H A DRole.java62 public boolean equals(Object other) { argument
64 if(other instanceof Role) {
65 ret = getName().equals(((Role)other).getName());
H A DSecurityRoleDescriptor.java77 public boolean equals(Object other) { argument
78 if (other instanceof SecurityRoleDescriptor &&
79 this.getName().equals( ((SecurityRoleDescriptor) other).getName() )) {
H A DAddressing.java60 public Addressing(Addressing other) { argument
61 super(other);
62 enabled = other.enabled;
63 required = other.required;
64 responses = other.responses;
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/runtime/web/
H A DCacheHelper.java55 public CacheHelper(CacheHelper other) argument
57 super(other);
/glassfish-3.1.2/common/common-util/src/main/java/org/glassfish/security/common/
H A DGroup.java46 * in other words, several Principals belong to a same group.
56 public boolean equals(Object other) { argument
57 if(other instanceof Group) {
58 return getName().equals(((Group)other).getName());
/glassfish-3.1.2/connectors/javax.resource/src/main/java/javax/resource/cci/
H A DRecord.java112 boolean equals(Object other); argument
/glassfish-3.1.2/connectors/javax.resource/src/main/java/javax/resource/spi/security/
H A DPasswordCredential.java130 * @param other Object to which PasswordCredential is to be compared
136 boolean equals(Object other) { argument
137 if (!(other instanceof PasswordCredential))
140 PasswordCredential pc = (PasswordCredential)other;
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/
H A DTimerPrimaryKey.java60 public boolean equals(Object other) argument
62 if ( other instanceof TimerPrimaryKey ) {
63 TimerPrimaryKey tpk = (TimerPrimaryKey) other;
/glassfish-3.1.2/tests/amx/src/org/glassfish/admin/amxtest/support/
H A DAMXComparator.java65 equals(final Object other) { argument
66 return (other instanceof AMXComparator);
/glassfish-3.1.2/transaction/jts/src/main/java/com/sun/jts/CosTransactions/
H A DLogRestartDescriptor.java155 * @param other The other LogRestartDescriptor to be compared.
161 final boolean equals(LogRestartDescriptor other) { argument
162 return (restartValid == other.restartValid &&
163 restartDataLength == other.restartDataLength &&
164 timeStamp == other.timeStamp);
/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/util/jmx/
H A DAttributeComparator.java64 public boolean equals(Object other) argument
66 return (other instanceof AttributeComparator);
H A DMBeanAttributeInfoComparator.java70 public boolean equals(Object other) argument
72 return (other instanceof MBeanAttributeInfoComparator);
H A DMBeanOperationInfoComparator.java86 public boolean equals(Object other) argument
88 return (other instanceof MBeanOperationInfoComparator);
/glassfish-3.1.2/jdbc/jdbc-ra/jdbc-core/src/main/java/com/sun/gjc/spi/
H A DDSManagedConnectionFactory.java111 * for all other conditions go create a new connection
176 * @param other <code>ManagedConnectionFactory</code> object for checking equality with
181 public boolean equals(Object other) { argument
187 if (other instanceof com.sun.gjc.spi.DSManagedConnectionFactory) {
189 (com.sun.gjc.spi.DSManagedConnectionFactory) other;
/glassfish-3.1.2/connectors/connectors-internal-api/src/main/java/com/sun/appserv/connectors/internal/api/
H A DResourcePropertyImpl.java79 public boolean equals(Object other) { argument
81 if( other instanceof ResourceProperty ) {
82 ResourceProperty otherProp = (ResourceProperty) other;

Completed in 28 milliseconds

12345