Fix checkstyle violations in sal-binding-broker
[controller.git] / opendaylight / md-sal / sal-binding-broker / src / main / java / org / opendaylight / controller / md / sal / binding / compat / DelegatedRootRpcRegistration.java
1 /*
2  * Copyright (c) 2015 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.md.sal.binding.compat;
9
10 import org.opendaylight.controller.sal.binding.api.BindingAwareBroker.RpcRegistration;
11 import org.opendaylight.yangtools.concepts.ObjectRegistration;
12 import org.opendaylight.yangtools.yang.binding.RpcService;
13
14 final class DelegatedRootRpcRegistration<T extends RpcService> implements RpcRegistration<T> {
15
16     private final ObjectRegistration<T> delegate;
17     private final Class<T> type;
18
19     DelegatedRootRpcRegistration(final Class<T> type, final ObjectRegistration<T> impl) {
20         this.delegate = impl;
21         this.type = type;
22     }
23
24
25     @Override
26     public void close() {
27         delegate.close();
28     }
29
30     @Override
31     public T getInstance() {
32         return delegate.getInstance();
33     }
34
35     @Override
36     public Class<T> getServiceType() {
37         return type;
38     }
39 }