Fix checkstyle violations in sal-binding-api
[controller.git] / opendaylight / md-sal / sal-binding-api / src / main / java / org / opendaylight / controller / sal / binding / api / rpc / RpcContextIdentifier.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.sal.binding.api.rpc;
9
10 import org.opendaylight.yangtools.concepts.Immutable;
11 import org.opendaylight.yangtools.yang.binding.BaseIdentity;
12 import org.opendaylight.yangtools.yang.binding.RpcService;
13
14 public final  class RpcContextIdentifier implements Immutable {
15
16     public final Class<? extends RpcService> rpcService;
17     public final Class<? extends BaseIdentity> routingContext;
18
19     private RpcContextIdentifier(Class<? extends RpcService> rpcService, Class<? extends BaseIdentity> routingContext) {
20         this.rpcService = rpcService;
21         this.routingContext = routingContext;
22     }
23
24     public Class<? extends RpcService> getRpcService() {
25         return rpcService;
26     }
27
28     public Class<? extends BaseIdentity> getRoutingContext() {
29         return routingContext;
30     }
31
32     public static RpcContextIdentifier contextForGlobalRpc(Class<? extends RpcService> serviceType) {
33         return new RpcContextIdentifier(serviceType, null);
34     }
35
36     public static RpcContextIdentifier contextFor(Class<? extends RpcService> serviceType,
37             Class<? extends BaseIdentity> routingContext) {
38         return new RpcContextIdentifier(serviceType, routingContext);
39     }
40
41     @Override
42     public int hashCode() {
43         final int prime = 31;
44         int result = 1;
45         result = prime * result + (routingContext == null ? 0 : routingContext.hashCode());
46         result = prime * result + (rpcService == null ? 0 : rpcService.hashCode());
47         return result;
48     }
49
50     @Override
51     public boolean equals(Object obj) {
52         if (this == obj) {
53             return true;
54         }
55         if (obj == null) {
56             return false;
57         }
58         if (getClass() != obj.getClass()) {
59             return false;
60         }
61         RpcContextIdentifier other = (RpcContextIdentifier) obj;
62         if (routingContext == null) {
63             if (other.routingContext != null) {
64                 return false;
65             }
66         } else if (!routingContext.equals(other.routingContext)) {
67             return false;
68         }
69         if (rpcService == null) {
70             if (other.rpcService != null) {
71                 return false;
72             }
73         } else if (!rpcService.equals(other.rpcService)) {
74             return false;
75         }
76         return true;
77     }
78 }