ecd6785df7c58cf196cf872f30b240d5757997c0
[controller.git] / opendaylight / md-sal / sal-dom-spi / src / main / java / org / opendaylight / controller / sal / core / spi / ForwardingProviderSession.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
9 package org.opendaylight.controller.sal.core.spi;
10
11 import org.opendaylight.controller.sal.core.api.Broker.ProviderSession;
12 import org.opendaylight.controller.sal.core.api.BrokerService;
13
14 /**
15  * Deprecated.
16  *
17  * @deprecated Use blueprint instead for code wiring.
18  */
19 @Deprecated
20 public abstract class ForwardingProviderSession implements ProviderSession {
21
22     protected abstract ProviderSession delegate();
23
24     @Override
25     public void close() {
26         delegate().close();
27     }
28
29     @Override
30     public <T extends BrokerService> T getService(Class<T> arg0) {
31         return delegate().getService(arg0);
32     }
33
34     @Override
35     public boolean isClosed() {
36         return delegate().isClosed();
37     }
38
39 }