Remove DataPostPath
[netconf.git] / restconf / restconf-nb / src / main / java / org / opendaylight / restconf / server / api / RestconfServer.java
index 0c7743ec8a94f7e6378da75d06ae9149ade7d501..864eebfb17d5699063259a152b5263195b5068a8 100644 (file)
@@ -88,6 +88,14 @@ public interface RestconfServer {
 
     RestconfFuture<DataPostResult.CreateResource> dataPOST(ChildBody body, Map<String, String> queryParameters);
 
+    /**
+     * Create or invoke a operation, as described in
+     * <a href="https://www.rfc-editor.org/rfc/rfc8040#section-4.4">RFC8040 section 4.4</a>.
+     *
+     * @param identifier path to target
+     * @param body body of the post request
+     * @param queryParameters query parameters
+     */
     RestconfFuture<? extends DataPostResult> dataPOST(ApiPath identifier, DataPostBody body,
         Map<String, String> queryParameters);