org.jboss.ejb.client.Affinity Maven / Gradle / Ivy
Go to download
This artifact provides a single jar that contains all classes required to use remote EJB and JMS, including
all dependencies. It is intended for use by those not using maven, maven users should just import the EJB and
JMS BOM's instead (shaded JAR's cause lots of problems with maven, as it is very easy to inadvertently end up
with different versions on classes on the class path).
/*
* JBoss, Home of Professional Open Source.
* Copyright 2017 Red Hat, Inc., and individual contributors
* as indicated by the @author tags.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jboss.ejb.client;
import java.io.IOException;
import java.io.InvalidClassException;
import java.io.ObjectInputStream;
import java.io.Serializable;
import java.net.URI;
import java.net.URISyntaxException;
/**
* The affinity specification for an EJB proxy.
*
* @author David M. Lloyd
*/
public abstract class Affinity implements Serializable {
private static final long serialVersionUID = -2985180758368879373L;
/**
* The specification for no particular affinity.
*/
public static final Affinity NONE = new NoAffinity();
/**
* The specification for the local Enterprise Beans environment.
*/
public static final Affinity LOCAL = new LocalAffinity();
/**
* Key which will be used in the invocation context data for passing around the weak affinity
* associated with a Enterprise Bean.
*/
public static final String WEAK_AFFINITY_CONTEXT_KEY = "jboss.ejb.weak.affinity";
Affinity() {
}
/**
* Get the affinity specification corresponding to the given URI.
*
* @param uri the URI
* @return the affinity specification (not {@code null})
*/
public static Affinity forUri(URI uri) {
if (uri == null || ! uri.isAbsolute()) return NONE;
final String scheme = uri.getScheme();
assert scheme != null; // due to isAbsolute() check
switch (scheme) {
case "node": return new NodeAffinity(uri.getSchemeSpecificPart());
case "cluster": return new ClusterAffinity(uri.getSchemeSpecificPart());
case "local": return LOCAL;
default: return new URIAffinity(uri);
}
}
/**
* Get the associated URI.
*
* @return the associated URI (not {@code null})
*/
public abstract URI getUri();
public boolean equals(Object other) {
return other instanceof Affinity && equals((Affinity) other);
}
public abstract boolean equals(Affinity other);
public abstract int hashCode();
private void readObject(ObjectInputStream ois) throws IOException, ClassNotFoundException {
ois.defaultReadObject();
if (! (this instanceof URIAffinity || this instanceof NodeAffinity || this instanceof ClusterAffinity || this instanceof LocalAffinity || this instanceof NoAffinity)) {
throw new InvalidClassException(getClass().getName(), "Disallowed affinity class");
}
}
static class NoAffinity extends Affinity {
private static final long serialVersionUID = -2052559528672779420L;
public int hashCode() {
return -1;
}
public URI getUri() {
return null;
}
public boolean equals(final Object other) {
return other == this;
}
public boolean equals(final Affinity obj) {
return obj == this;
}
protected Object readResolve() {
return NONE;
}
public String toString() {
return "None";
}
}
static class LocalAffinity extends Affinity {
private static final long serialVersionUID = -2052559528672779420L;
private static final URI uri;
static {
try {
uri = new URI("local", "-", null);
} catch (URISyntaxException e) {
throw new IllegalStateException(e);
}
}
public int hashCode() {
return -1;
}
public URI getUri() {
return uri;
}
public boolean equals(final Object other) {
return other == this;
}
public boolean equals(final Affinity obj) {
return obj == this;
}
protected Object readResolve() {
return LOCAL;
}
public String toString() {
return "Local";
}
}
}