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