Bug 5528 - Streams service impl - prepare impl by interface
[netconf.git] / restconf / sal-rest-connector / src / main / java / org / opendaylight / restconf / restful / services / impl / RestconfStreamsSubscriptionServiceImpl.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.impl;
9
10 import javax.ws.rs.core.Response;
11 import javax.ws.rs.core.UriInfo;
12 import org.opendaylight.restconf.restful.services.api.RestconfStreamsSubscriptionService;
13
14 public class RestconfStreamsSubscriptionServiceImpl implements RestconfStreamsSubscriptionService {
15
16     @Override
17     public Response subscribeToStream(final String identifier, final UriInfo uriInfo) {
18         throw new UnsupportedOperationException("Not yet implemented");
19     }
20
21 }