Bug 5528 - Streams service impl - prepare impl by interface 28/39928/13
authorJakub Toth <jatoth@cisco.com>
Tue, 7 Jun 2016 09:18:05 +0000 (11:18 +0200)
committerJakub Toth <jatoth@cisco.com>
Tue, 28 Jun 2016 12:24:08 +0000 (12:24 +0000)
Change-Id: Ib3d2a755159ee90b2fdafde2aa203f1f5dacbcbd
Signed-off-by: Jakub Toth <jatoth@cisco.com>
restconf/sal-rest-connector/src/main/java/org/opendaylight/restconf/restful/services/impl/RestconfStreamsSubscriptionServiceImpl.java [new file with mode: 0644]

diff --git a/restconf/sal-rest-connector/src/main/java/org/opendaylight/restconf/restful/services/impl/RestconfStreamsSubscriptionServiceImpl.java b/restconf/sal-rest-connector/src/main/java/org/opendaylight/restconf/restful/services/impl/RestconfStreamsSubscriptionServiceImpl.java
new file mode 100644 (file)
index 0000000..9561ecf
--- /dev/null
@@ -0,0 +1,21 @@
+/*
+ * 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.restful.services.impl;
+
+import javax.ws.rs.core.Response;
+import javax.ws.rs.core.UriInfo;
+import org.opendaylight.restconf.restful.services.api.RestconfStreamsSubscriptionService;
+
+public class RestconfStreamsSubscriptionServiceImpl implements RestconfStreamsSubscriptionService {
+
+    @Override
+    public Response subscribeToStream(final String identifier, final UriInfo uriInfo) {
+        throw new UnsupportedOperationException("Not yet implemented");
+    }
+
+}