Move AbstractBody et al.
[netconf.git] / restconf / restconf-nb / src / main / java / org / opendaylight / restconf / server / api / RestconfServer.java
1 /*
2  * Copyright (c) 2023 PANTHEON.tech, s.r.o. 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.server.api;
9
10 import java.net.URI;
11 import java.util.Map;
12 import org.eclipse.jdt.annotation.NonNullByDefault;
13 import org.eclipse.jdt.annotation.Nullable;
14 import org.opendaylight.restconf.api.ApiPath;
15 import org.opendaylight.restconf.common.errors.RestconfFuture;
16 import org.opendaylight.restconf.nb.rfc8040.legacy.NormalizedNodePayload;
17 import org.opendaylight.yangtools.yang.common.Empty;
18
19 /**
20  * An implementation of a RESTCONF server, implementing the
21  * <a href="https://www.rfc-editor.org/rfc/rfc8040#section-3.3">RESTCONF API Resource</a>.
22  */
23 @NonNullByDefault
24 public interface RestconfServer {
25     /**
26      * Delete a data resource.
27      *
28      * @param identifier resource identifier
29      * @return A {@link RestconfFuture} of the operation
30      */
31     @SuppressWarnings("checkstyle:abbreviationAsWordInName")
32     RestconfFuture<Empty> dataDELETE(ApiPath identifier);
33
34     /**
35      * Return the content of the datastore.
36      *
37      * @param params {@link DataGetParams} for this request
38      * @return A {@link RestconfFuture} of the {@link DataGetResult} content
39      */
40     RestconfFuture<DataGetResult> dataGET(DataGetParams params);
41
42     /**
43      * Return the content of a data resource.
44      *
45      * @param identifier resource identifier
46      * @param params {@link DataGetParams} for this request
47      * @return A {@link RestconfFuture} of the {@link DataGetResult} content
48      */
49     RestconfFuture<DataGetResult> dataGET(ApiPath identifier, DataGetParams params);
50
51     /**
52      * Partially modify the target data resource, as defined in
53      * <a href="https://www.rfc-editor.org/rfc/rfc8040#section-4.6.1">RFC8040, section 4.6.1</a>.
54      *
55      * @param body data node for put to config DS
56      * @return A {@link RestconfFuture} of the operation
57      */
58     RestconfFuture<DataPatchResult> dataPATCH(ResourceBody body);
59
60     /**
61      * Partially modify the target data resource, as defined in
62      * <a href="https://www.rfc-editor.org/rfc/rfc8040#section-4.6.1">RFC8040, section 4.6.1</a>.
63      *
64      * @param identifier resource identifier
65      * @param body data node for put to config DS
66      * @return A {@link RestconfFuture} of the operation
67      */
68     RestconfFuture<DataPatchResult> dataPATCH(ApiPath identifier, ResourceBody body);
69
70     /**
71      * Ordered list of edits that are applied to the datastore by the server, as defined in
72      * <a href="https://www.rfc-editor.org/rfc/rfc8072#section-2">RFC8072, section 2</a>.
73      *
74      * @param body YANG Patch body
75      * @return A {@link RestconfFuture} of the {@link DataYangPatchResult} content
76      */
77     RestconfFuture<DataYangPatchResult> dataPATCH(PatchBody body);
78
79     /**
80      * Ordered list of edits that are applied to the datastore by the server, as defined in
81      * <a href="https://www.rfc-editor.org/rfc/rfc8072#section-2">RFC8072, section 2</a>.
82      *
83      * @param identifier path to target
84      * @param body YANG Patch body
85      * @return A {@link RestconfFuture} of the {@link DataYangPatchResult} content
86      */
87     RestconfFuture<DataYangPatchResult> dataPATCH(ApiPath identifier, PatchBody body);
88
89     RestconfFuture<DataPostResult.CreateResource> dataPOST(ChildBody body, Map<String, String> queryParameters);
90
91     RestconfFuture<? extends DataPostResult> dataPOST(ApiPath identifier, DataPostBody body,
92         Map<String, String> queryParameters);
93
94     /**
95      * Replace the data store.
96      *
97      * @param body data node for put to config DS
98      * @param queryParameters Query parameters
99      * @return A {@link RestconfFuture} completing with {@link DataPutResult}
100      */
101     RestconfFuture<DataPutResult> dataPUT(ResourceBody body, Map<String, String> queryParameters);
102
103     /**
104      * Create or replace a data store resource.
105      *
106      * @param identifier resource identifier
107      * @param body data node for put to config DS
108      * @param queryParameters Query parameters
109      * @return A {@link RestconfFuture} completing with {@link DataPutResult}
110      */
111     RestconfFuture<DataPutResult> dataPUT(ApiPath identifier, ResourceBody body, Map<String, String> queryParameters);
112
113     /**
114      * Return the set of supported RPCs supported by {@link #operationsPOST(URI, ApiPath, OperationInputBody)},
115      * as expressed in the <a href="https://www.rfc-editor.org/rfc/rfc8040#page-84">ietf-restconf.yang</a>
116      * {@code container operations} statement.
117      *
118      * @return A {@link RestconfFuture} completing with an {@link OperationsGetResult}
119      */
120     RestconfFuture<OperationsGetResult> operationsGET();
121
122     /*
123      * Return the details about a particular operation supported by
124      * {@link #operationsPOST(URI, String, OperationInputBody)}, as expressed in the
125      * <a href="https://www.rfc-editor.org/rfc/rfc8040#page-84">ietf-restconfig.yang</a>
126      * {@code container operations} statement.
127      *
128      * @param operation An operation
129      * @return A {@link RestconfFuture} completing with an {@link OperationsGetResult}
130      */
131     RestconfFuture<OperationsGetResult> operationsGET(ApiPath operation);
132
133     /**
134      * Invoke an RPC operation, as defined in
135      * <a href="https://www.rfc-editor.org/rfc/rfc8040#section-3.6">RFC8040 Operation Resource</a>.
136      *
137      * @param restconfURI Base URI of the request
138      * @param operation {@code <operation>} path, really an {@link ApiPath} to an {@code rpc}
139      * @param body RPC operation
140      * @return A {@link RestconfFuture} completing with {@link OperationsPostResult}
141      */
142     // FIXME: 'operation' should really be an ApiIdentifier with non-null module, but we also support yang-ext:mount,
143     //        and hence it is a path right now
144     RestconfFuture<OperationsPostResult> operationsPOST(URI restconfURI, ApiPath operation, OperationInputBody body);
145
146     /**
147      * Return the revision of {@code ietf-yang-library} module implemented by this server, as defined in
148      * <a href="https://www.rfc-editor.org/rfc/rfc8040#section-3.3.3">RFC8040 {+restconf}/yang-library-version</a>.
149      *
150      * @return A {@link RestconfFuture} completing with {@link NormalizedNodePayload} containing a single
151      *        {@code yang-library-version} leaf element.
152      */
153     // FIXME: this is a simple encoding-variadic return, similar to how OperationsContent is handled use a common
154     //        construct for both cases -- in this case it carries a yang.common.Revision
155     RestconfFuture<NormalizedNodePayload> yangLibraryVersionGET();
156
157     RestconfFuture<ModulesGetResult> modulesYangGET(String fileName, @Nullable String revision);
158
159     RestconfFuture<ModulesGetResult> modulesYangGET(ApiPath mountPath, String fileName, @Nullable String revision);
160
161     RestconfFuture<ModulesGetResult> modulesYinGET(String fileName, @Nullable String revision);
162
163     RestconfFuture<ModulesGetResult> modulesYinGET(ApiPath mountPath, String fileName, @Nullable String revision);
164 }