Merge "Reduce/enhance logging in AbstractLeader"
[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 com.google.common.base.Throwables;
11 import org.opendaylight.controller.sal.binding.api.BindingAwareBroker.RpcRegistration;
12 import org.opendaylight.yangtools.concepts.ObjectRegistration;
13 import org.opendaylight.yangtools.yang.binding.RpcService;
14
15 final class DelegatedRootRpcRegistration<T extends RpcService> implements RpcRegistration<T> {
16
17     private final ObjectRegistration<T> delegate;
18     private final Class<T> type;
19
20     public DelegatedRootRpcRegistration(final Class<T> type,final ObjectRegistration<T> impl) {
21         this.delegate = impl;
22         this.type = type;
23     }
24
25
26     @Override
27     public void close() {
28         try {
29             // FIXME: Should use more specific registration object.
30             delegate.close();
31         } catch (final Exception e) {
32             throw Throwables.propagate(e);
33         }
34     }
35
36     @Override
37     public T getInstance() {
38         return delegate.getInstance();
39     }
40
41     @Override
42     public Class<T> getServiceType() {
43         return type;
44     }
45
46 }