Refactor OperationsContent
[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 org.eclipse.jdt.annotation.NonNullByDefault;
12 import org.eclipse.jdt.annotation.Nullable;
13 import org.opendaylight.restconf.api.ApiPath;
14 import org.opendaylight.restconf.common.errors.RestconfFuture;
15 import org.opendaylight.restconf.nb.rfc8040.databind.OperationInputBody;
16 import org.opendaylight.restconf.nb.rfc8040.legacy.NormalizedNodePayload;
17 import org.opendaylight.restconf.server.spi.OperationOutput;
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      * Return the revision of {@code ietf-yang-library} module implemented by this server, as defined in
27      * <a href="https://www.rfc-editor.org/rfc/rfc8040#section-3.3.3">RFC8040 {+restconf}/yang-library-version</a>.
28      *
29      * @return A {@code yang-library-version} element
30      */
31     // FIXME: this is a simple coning-variadic return, similar to how OperationsContent is handled use a common
32     //        construct for both cases
33     // FIXME: RestconfFuture if we transition to being used by restconf-client implementation
34     NormalizedNodePayload yangLibraryVersionGET();
35
36     /**
37      * Return the set of supported RPCs supported by {@link #operationsPOST(URI, String, OperationInputBody)}.
38      *
39      * @return An {@link OperationsContent}
40      */
41     OperationsContent operationsGET();
42
43     /*
44      * Return the details about a particular operation supported by
45      * {@link #operationsPOST(URI, String, OperationInputBody)}, as expressed in the
46      * <a href="https://www.rfc-editor.org/rfc/rfc8040#page-84>RFC8040<a> {@code container operations} statement.
47      *
48      * @param operation An operation
49      * @return An {@link OperationsContent}, or {@code null} if {@code operation} does not point to an {@code rpc}
50      */
51     // FIXME: 'operation' should really be an ApiIdentifier with non-null module, but we also support ang-ext:mount,
52     //        and hence it is a path right now
53     // FIXME: use ApiPath instead of String
54     @Nullable OperationsContent operationsGET(String operation);
55
56     /**
57      * Invoke an RPC operation, as defined in
58      * <a href="https://www.rfc-editor.org/rfc/rfc8040#section-3.6">RFC8040 Operation Resource</a>.
59      *
60      * @param restconfURI Base URI of the request
61      * @param operation {@code <operation>} path, really an {@link ApiPath} to an {@code rpc}
62      * @param body RPC operation
63      * @return A {@link RestconfFuture} of the {@link OperationOutput operation result}
64      */
65     // FIXME: 'operation' should really be an ApiIdentifier with non-null module, but we also support ang-ext:mount,
66     //        and hence it is a path right now
67     // FIXME: use ApiPath instead of String
68     RestconfFuture<OperationOutput> operationsPOST(URI restconfURI, String operation, OperationInputBody body);
69 }