Bug 5528 - Subscribing to stream impl
[netconf.git] / restconf / sal-rest-connector / src / main / java / org / opendaylight / restconf / rest / services / api / Draft11ServicesWrapper.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.rest.services.api;
9
10 import javax.ws.rs.Path;
11
12 /**
13  * Wrapper for all services:
14  * <ul>
15  * <li>{@link RestconfModulesService}
16  * <li>{@link RestconfOperationsService}
17  * <li>{@link RestconfStreamsService}
18  * <li>{@link RestconfSchemaService}
19  * </ul>
20  *
21  */
22 @Path("/")
23 public interface Draft11ServicesWrapper
24         extends RestconfModulesService, RestconfOperationsService, RestconfStreamsService, RestconfSchemaService {
25 }