X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-binding-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Fbinding%2Fapi%2Frpc%2FRpcContextIdentifier.java;h=a5d76bef3e48045db575f39d48bdc4787da7857c;hb=c4b4b98f56ab1d9821edb737912632c2867ae783;hp=e3bedd33f9a2307bf9e76437e48729765698c763;hpb=0a2c659c014737c7e12a39001310de14d5f85149;p=controller.git diff --git a/opendaylight/md-sal/sal-binding-api/src/main/java/org/opendaylight/controller/sal/binding/api/rpc/RpcContextIdentifier.java b/opendaylight/md-sal/sal-binding-api/src/main/java/org/opendaylight/controller/sal/binding/api/rpc/RpcContextIdentifier.java index e3bedd33f9..a5d76bef3e 100644 --- a/opendaylight/md-sal/sal-binding-api/src/main/java/org/opendaylight/controller/sal/binding/api/rpc/RpcContextIdentifier.java +++ b/opendaylight/md-sal/sal-binding-api/src/main/java/org/opendaylight/controller/sal/binding/api/rpc/RpcContextIdentifier.java @@ -11,13 +11,13 @@ import org.opendaylight.yangtools.concepts.Immutable; import org.opendaylight.yangtools.yang.binding.BaseIdentity; import org.opendaylight.yangtools.yang.binding.RpcService; -public final class RpcContextIdentifier implements Immutable{ +@Deprecated +public final class RpcContextIdentifier implements Immutable { public final Class rpcService; public final Class routingContext; private RpcContextIdentifier(Class rpcService, Class routingContext) { - super(); this.rpcService = rpcService; this.routingContext = routingContext; } @@ -30,11 +30,12 @@ public final class RpcContextIdentifier implements Immutable{ return routingContext; } - public static final RpcContextIdentifier contextForGlobalRpc(Class serviceType) { + public static RpcContextIdentifier contextForGlobalRpc(Class serviceType) { return new RpcContextIdentifier(serviceType, null); } - public static final RpcContextIdentifier contextFor(Class serviceType,Class routingContext) { + public static RpcContextIdentifier contextFor(Class serviceType, + Class routingContext) { return new RpcContextIdentifier(serviceType, routingContext); } @@ -42,31 +43,37 @@ public final class RpcContextIdentifier implements Immutable{ public int hashCode() { final int prime = 31; int result = 1; - result = prime * result + ((routingContext == null) ? 0 : routingContext.hashCode()); - result = prime * result + ((rpcService == null) ? 0 : rpcService.hashCode()); + result = prime * result + (routingContext == null ? 0 : routingContext.hashCode()); + result = prime * result + (rpcService == null ? 0 : rpcService.hashCode()); return result; } @Override public boolean equals(Object obj) { - if (this == obj) + if (this == obj) { return true; - if (obj == null) + } + if (obj == null) { return false; - if (getClass() != obj.getClass()) + } + if (getClass() != obj.getClass()) { return false; + } RpcContextIdentifier other = (RpcContextIdentifier) obj; if (routingContext == null) { - if (other.routingContext != null) + if (other.routingContext != null) { return false; - } else if (!routingContext.equals(other.routingContext)) + } + } else if (!routingContext.equals(other.routingContext)) { return false; + } if (rpcService == null) { - if (other.rpcService != null) + if (other.rpcService != null) { return false; - } else if (!rpcService.equals(other.rpcService)) + } + } else if (!rpcService.equals(other.rpcService)) { return false; + } return true; } - }