From: Jakub Toth Date: Tue, 7 Jun 2016 09:18:05 +0000 (+0200) Subject: Bug 5528 - Streams service impl - prepare impl by interface X-Git-Tag: release/boron~46 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=commitdiff_plain;h=b5d26d0eedf73ab455b80d30f1bbea8bf5d85008;p=netconf.git Bug 5528 - Streams service impl - prepare impl by interface Change-Id: Ib3d2a755159ee90b2fdafde2aa203f1f5dacbcbd Signed-off-by: Jakub Toth --- 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 index 0000000000..9561ecf843 --- /dev/null +++ b/restconf/sal-rest-connector/src/main/java/org/opendaylight/restconf/restful/services/impl/RestconfStreamsSubscriptionServiceImpl.java @@ -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"); + } + +}