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

1234567

/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/spi/
H A DConnectionRequestInfo.java77 boolean equals(Object other); argument
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/
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 DNameValuePairDescriptor.java55 public NameValuePairDescriptor(NameValuePairDescriptor other) { argument
56 super(other);
57 value = other.value;
H A DRole.java62 public boolean equals(Object other) { argument
64 if(other instanceof Role) {
65 ret = getName().equals(((Role)other).getName());
H A DLocaleEncodingMappingDescriptor.java59 public LocaleEncodingMappingDescriptor(LocaleEncodingMappingDescriptor other) { argument
60 super(other);
61 locale = other.locale;
62 encoding = other.encoding;
H A DActivationConfigDescriptor.java61 public ActivationConfigDescriptor(ActivationConfigDescriptor other) { argument
62 activationConfig = new OrderedSet(other.activationConfig);
H A DContainerTransaction.java71 public ContainerTransaction(ContainerTransaction other) { argument
72 if (other != null) {
73 this.transactionAttribute = other.transactionAttribute;
74 this.setDescription(other.getDescription());
114 * Equality iff the other object is another container transaction with the
118 public boolean equals(Object other) { argument
119 if (other != null && other instanceof ContainerTransaction) {
121 (ContainerTransaction) other;
H A DAddressing.java60 public Addressing(Addressing other) { argument
61 super(other);
62 enabled = other.enabled;
63 required = other.required;
64 responses = other.responses;
H A DMessageDestinationReferenceDescriptor.java82 public MessageDestinationReferenceDescriptor(MessageDestinationReferenceDescriptor other) { argument
83 super(other);
84 referringBundle = other.referringBundle; // copy as-is
85 usage = other.usage; // immutable String
86 destinationType = other.destinationType; // immutable String
87 referencer = new MessageDestinationReferencerImpl(other.referencer);
259 boolean isConflict(MessageDestinationReferenceDescriptor other) { argument
260 return getName().equals(other.getName()) &&
262 DOLUtils.equals(getDestinationType(), other.getDestinationType()) &&
263 DOLUtils.equals(getUsage(), other
[all...]
H A DSecurityRoleDescriptor.java77 public boolean equals(Object other) { argument
78 if (other instanceof SecurityRoleDescriptor &&
79 this.getName().equals( ((SecurityRoleDescriptor) other).getName() )) {
H A DEntityManagerFactoryReferenceDescriptor.java94 boolean isConflict(EntityManagerFactoryReferenceDescriptor other) { argument
95 return (getName().equals(other.getName())) &&
96 (!DOLUtils.equals(getUnitName(), other.getUnitName())
97 || isConflictResourceGroup(other));
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 DEntityManagerReferenceDescriptor.java123 boolean isConflict(EntityManagerReferenceDescriptor other) { argument
124 return getName().equals(other.getName()) &&
126 DOLUtils.equals(getUnitName(), other.getUnitName()) &&
127 DOLUtils.equals(getPersistenceContextType(), other.getPersistenceContextType()) &&
128 properties.equals(other.properties)
130 isConflictResourceGroup(other));
H A DSecurityConstraintImpl.java69 public SecurityConstraintImpl(SecurityConstraintImpl other) { argument
70 if (other.webResourceCollections != null) {
72 for (WebResourceCollection wrc : other.webResourceCollections) {
76 if (other.authorizationConstraint != null) {
77 this.authorizationConstraint = new AuthorizationConstraintImpl((AuthorizationConstraintImpl) other.authorizationConstraint);
79 if (other.userDataConstraint != null) {
81 this.userDataConstraint.setTransportGuarantee(other.userDataConstraint.getTransportGuarantee());
H A DWebServiceHandlerChain.java61 public WebServiceHandlerChain(WebServiceHandlerChain other) { argument
62 super(other);
63 this.protocolBinding = other.protocolBinding;
64 this.serviceNamePattern = other.serviceNamePattern;
65 this.portNamePattern = other.portNamePattern;
66 if (other.handlers != null) {
68 for (Iterator i = other.handlers.iterator(); i.hasNext();) {
H A DWebComponentDescriptor.java128 public WebComponentDescriptor(WebComponentDescriptor other) { argument
129 setCanonicalName(other.getCanonicalName());
130 setServlet(other.isServlet());
132 other.getWebComponentImplementation());
134 other.getInitializationParameterSet());
135 getUrlPatternsSet().addAll(other.getUrlPatternsSet());
136 setLoadOnStartUp(other.getLoadOnStartUp());
138 other.getSecurityRoleReferenceSet());
139 setRunAsIdentity(other.getRunAsIdentity());
140 setAsyncSupported(other
540 equals(Object other) argument
556 add(WebComponentDescriptor other) argument
574 add(WebComponentDescriptor other, boolean combineUrlPatterns) argument
636 isConflict(WebComponentDescriptor other, boolean allowNullImplNameOverride) argument
[all...]
/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/transaction/jts/src/main/java/com/sun/jts/CosTransactions/
H A DLogLSN.java180 * @param other The other LogLSN to be compared.
186 final boolean equals( LogLSN other ) {
187 return offset == other.offset && extent == other.extent;
192 * @param other The other LogLSN to be compared.
198 final boolean lessThan( LogLSN other ) {
199 return ( (offset < other.offset && extent == other
[all...]
/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/admin/util/src/main/java/com/sun/enterprise/admin/util/
H A DTokenValue.java84 public TokenValue(TokenValue other) { argument
85 this.token = other.token;
86 this.value = other.value;
87 this.delimiter = other.delimiter;
88 this.delimitedToken = other.delimitedToken;
91 public int compareTo(Object other) { argument
92 final TokenValue otherTokenValue = (TokenValue) other;
96 public boolean equals(Object other) { argument
98 if (other instanceof TokenValue) {
99 same = token.equals(((TokenValue)other)
[all...]
/glassfish-3.1.2/security/core/src/main/java/com/sun/enterprise/security/auth/nonce/
H A DStringNonce.java77 final StringNonce other = (StringNonce) obj;
78 if (this.nonce != other.getNonce() && (this.nonce == null || !this.nonce.equals(other.getNonce()))) {
/glassfish-3.1.2/jdbc/jdbc-ra/jdbc-core/src/main/java/com/sun/gjc/spi/base/
H A DCacheObjectKey.java217 final CacheObjectKey other = (CacheObjectKey) obj;
218 if (this.sql == null || other.sql == null || !this.sql.equals(other.sql)) {
221 if (this.statementType == null || other.statementType == null ||
222 !this.statementType.equals(other.statementType)) {
225 if (this.resultSetType != other.resultSetType) {
228 if (this.resultSetConcurrency != other.resultSetConcurrency) {
231 if (this.resultSetHoldability != other.resultSetHoldability) {
234 if(CacheObjectKey.PREPARED_STATEMENT.equals(other.statementType)) {
235 if (this.autoGeneratedKeys != other
[all...]
/glassfish-3.1.2/appclient/server/core/src/main/java/org/glassfish/appclient/server/core/jws/servedcontent/
H A DAutoSignedContent.java133 final AutoSignedContent other = (AutoSignedContent) obj;
134 if (this.unsignedFile != other.unsignedFile && (this.unsignedFile == null || !this.unsignedFile.equals(other.unsignedFile))) {
137 if (this.signedFile != other.signedFile && (this.signedFile == null || !this.signedFile.equals(other.signedFile))) {
140 if ((this.userProvidedAlias == null) ? (other.userProvidedAlias != null) : !this.userProvidedAlias.equals(other.userProvidedAlias)) {

Completed in 593 milliseconds

1234567