1 package org.opendaylight.yang.gen.v1.org.onap.ccsdk.sli.core.sliapi.rev161110;
2 import org.opendaylight.yangtools.yang.binding.RpcService;
3 import org.opendaylight.yangtools.yang.common.RpcResult;
4 import java.util.concurrent.Future;
7 * Interface for implementing the following YANG RPCs defined in module <b>SLI-API</b>
14 * leaf response-code {
17 * leaf ack-final-indicator {
20 * leaf response-message {
23 * leaf context-memory-json {
29 * " Method to add a new parameter.";
40 * list sli-parameter {
41 * key "parameter-name"
42 * leaf parameter-name {
51 * leaf boolean-value {
54 * uses parameter-setting;
59 * leaf response-code {
62 * leaf ack-final-indicator {
65 * leaf response-message {
68 * leaf context-memory-json {
76 public interface SLIAPIService
84 Future<RpcResult<HealthcheckOutput>> healthcheck();
87 * Method to add a new parameter.
90 Future<RpcResult<ExecuteGraphOutput>> executeGraph(ExecuteGraphInput input);