Split Restconf implementations (draft02 and RFC) - move
[netconf.git] / restconf / restconf-nb-bierman02 / src / main / java / org / opendaylight / restconf / restful / services / api / RestconfInvokeOperationsService.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.api;
9
10 import javax.ws.rs.Consumes;
11 import javax.ws.rs.Encoded;
12 import javax.ws.rs.POST;
13 import javax.ws.rs.Path;
14 import javax.ws.rs.PathParam;
15 import javax.ws.rs.Produces;
16 import javax.ws.rs.core.Context;
17 import javax.ws.rs.core.MediaType;
18 import javax.ws.rs.core.UriInfo;
19 import org.opendaylight.restconf.Rfc8040;
20 import org.opendaylight.restconf.common.context.NormalizedNodeContext;
21 import org.opendaylight.restconf.utils.RestconfConstants;
22
23 /**
24  * An operation resource represents a protocol operation defined with the YANG "rpc" statement. It is invoked
25  * using a POST method on the operation resource.
26  *
27  * @deprecated move to splitted module restconf-nb-rfc8040
28  */
29 @Deprecated
30 public interface RestconfInvokeOperationsService {
31
32     /**
33      * Invoke RPC operation.
34      *
35      * @param identifier
36      *             module name and rpc identifier string for the desired
37      *            operation
38      * @param payload
39      *             {@link NormalizedNodeContext} - the body of the operation
40      * @param uriInfo
41      *             URI info
42      * @return {@link NormalizedNodeContext}
43      */
44     @POST
45     @Path("/operations/{identifier:.+}")
46     @Produces({ Rfc8040.MediaTypes.DATA + RestconfConstants.JSON, Rfc8040.MediaTypes.DATA, MediaType.APPLICATION_JSON,
47             MediaType.APPLICATION_XML, MediaType.TEXT_XML })
48     @Consumes({ Rfc8040.MediaTypes.DATA + RestconfConstants.JSON, Rfc8040.MediaTypes.DATA, MediaType.APPLICATION_JSON,
49             MediaType.APPLICATION_XML, MediaType.TEXT_XML })
50     NormalizedNodeContext invokeRpc(@Encoded @PathParam("identifier") String identifier,
51             NormalizedNodeContext payload, @Context UriInfo uriInfo);
52 }