Fixed deployment of mount points (dynamic instances of MD-SAL)
[controller.git] / opendaylight / md-sal / sal-binding-broker / src / main / java / org / opendaylight / controller / sal / binding / spi / RpcContextIdentifier.java
diff --git a/opendaylight/md-sal/sal-binding-broker/src/main/java/org/opendaylight/controller/sal/binding/spi/RpcContextIdentifier.java b/opendaylight/md-sal/sal-binding-broker/src/main/java/org/opendaylight/controller/sal/binding/spi/RpcContextIdentifier.java
deleted file mode 100644 (file)
index 33569eb..0000000
+++ /dev/null
@@ -1,65 +0,0 @@
-package org.opendaylight.controller.sal.binding.spi;
-
-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{
-
-    public final Class<? extends RpcService> rpcService;
-    public final Class<? extends BaseIdentity> routingContext;
-   
-    private RpcContextIdentifier(Class<? extends RpcService> rpcService, Class<? extends BaseIdentity> routingContext) {
-        super();
-        this.rpcService = rpcService;
-        this.routingContext = routingContext;
-    }
-
-    public Class<? extends RpcService> getRpcService() {
-        return rpcService;
-    }
-
-    public Class<? extends BaseIdentity> getRoutingContext() {
-        return routingContext;
-    }
-    
-    public static final RpcContextIdentifier contextForGlobalRpc(Class<? extends RpcService> serviceType) {
-        return new RpcContextIdentifier(serviceType, null);
-    }
-    
-    public static final RpcContextIdentifier contextFor(Class<? extends RpcService> serviceType,Class<? extends BaseIdentity> routingContext) {
-        return new RpcContextIdentifier(serviceType, routingContext);
-    }
-
-    @Override
-    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());
-        return result;
-    }
-
-    @Override
-    public boolean equals(Object obj) {
-        if (this == obj)
-            return true;
-        if (obj == null)
-            return false;
-        if (getClass() != obj.getClass())
-            return false;
-        RpcContextIdentifier other = (RpcContextIdentifier) obj;
-        if (routingContext == null) {
-            if (other.routingContext != null)
-                return false;
-        } else if (!routingContext.equals(other.routingContext))
-            return false;
-        if (rpcService == null) {
-            if (other.rpcService != null)
-                return false;
-        } else if (!rpcService.equals(other.rpcService))
-            return false;
-        return true;
-    }
-
-}