Deprecate old MD-SAL APIs for removal
[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 @Deprecated(forRemoval = true)
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     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         delegate.close();
29     }
30
31     @Override
32     public T getInstance() {
33         return delegate.getInstance();
34     }
35
36     @Override
37     public Class<T> getServiceType() {
38         return type;
39     }
40 }