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