Bug 5526 - Restconf services api + RestconfConstants
[netconf.git] / restconf / sal-rest-connector / src / main / java / org / opendaylight / restconf / rest / api / services / Draft11ServicesWrapper.java
diff --git a/restconf/sal-rest-connector/src/main/java/org/opendaylight/restconf/rest/api/services/Draft11ServicesWrapper.java b/restconf/sal-rest-connector/src/main/java/org/opendaylight/restconf/rest/api/services/Draft11ServicesWrapper.java
new file mode 100644 (file)
index 0000000..24dcd0b
--- /dev/null
@@ -0,0 +1,26 @@
+/*
+ * Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
+package org.opendaylight.restconf.rest.api.services;
+
+import javax.ws.rs.Path;
+import org.opendaylight.restconf.rest.api.services.schema.RestconfSchemaService;
+
+/**
+ * Wrapper for all services:
+ * <ul>
+ * <li>{@link RestconfModulesService}
+ * <li>{@link RestconfOperationsService}
+ * <li>{@link RestconfStreamsService}
+ * <li>{@link RestconfSchemaService}
+ * </ul>
+ *
+ */
+@Path("/")
+public interface Draft11ServicesWrapper
+        extends RestconfModulesService, RestconfOperationsService, RestconfStreamsService, RestconfSchemaService {
+}