Publish SnapshotBacked transactions
[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 public abstract class ForwardingProviderSession implements ProviderSession {
15
16     protected abstract ProviderSession delegate();
17
18     @Override
19     public void close() {
20         delegate().close();
21     }
22
23     @Override
24     public <T extends BrokerService> T getService(Class<T> arg0) {
25         return delegate().getService(arg0);
26     }
27
28     @Override
29     public boolean isClosed() {
30         return delegate().isClosed();
31     }
32
33 }