b9f58fb9c7e5a5e93bae7f98fab39928319acb10
[netconf.git] / restconf / restconf-nb-rfc8040 / src / main / java / org / opendaylight / restconf / nb / rfc8040 / rests / services / api / RestconfDataStreamService.java
1 /*
2  * Copyright (c) 2020 Lumina Networks, Inc. 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.nb.rfc8040.rests.services.api;
9
10 import javax.ws.rs.Encoded;
11 import javax.ws.rs.GET;
12 import javax.ws.rs.Path;
13 import javax.ws.rs.PathParam;
14 import javax.ws.rs.Produces;
15 import javax.ws.rs.core.Context;
16 import javax.ws.rs.core.MediaType;
17 import javax.ws.rs.core.UriInfo;
18 import javax.ws.rs.sse.Sse;
19 import javax.ws.rs.sse.SseEventSink;
20
21 public interface RestconfDataStreamService {
22     /**
23      * Get target data resource.
24      *
25      * @param identifier path to target
26      * @param uriInfo URI info
27      */
28     @GET
29     @Path("/{identifier:.+}")
30     @Produces(MediaType.SERVER_SENT_EVENTS)
31     void getSSE(@Encoded @PathParam("identifier") String identifier, @Context UriInfo uriInfo,
32         @Context SseEventSink sink, @Context Sse sse);
33 }