Bug 6848 - Renaming to draft17
[netconf.git] / restconf / sal-rest-connector / src / main / java / org / opendaylight / restconf / restful / services / api / TransactionServicesWrapper.java
1 /*
2  * Copyright (c) 2016 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.restconf.restful.services.api;
9
10 /**
11  * Wrapper for all transaction services:
12  * <ul>
13  * <li>{@link RestconfDataService}
14  * <li>{@link RestconfInvokeOperationsService}
15  * <li>{@link RestconfStreamsSubscriptionService}
16  * </ul>
17  *
18  */
19 public interface TransactionServicesWrapper
20         extends RestconfDataService, RestconfInvokeOperationsService, RestconfStreamsSubscriptionService {
21
22 }