Merge "Fix modules Restconf call for mounted devices"
[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 public abstract class ForwardingConsumerSession implements ConsumerSession {
14
15     protected abstract ConsumerSession delegate();
16
17     @Override
18     public void close() {
19         delegate().close();
20     }
21
22     @Override
23     public <T extends BrokerService> T getService(Class<T> arg0) {
24         return delegate().getService(arg0);
25     }
26
27     @Override
28     public boolean isClosed() {
29         return delegate().isClosed();
30     }
31
32 }