440beea038ee08968285881c064b306a082ed3a4
[ccsdk/sli.git] /
1 package org.opendaylight.yang.gen.v1.org.onap.ccsdk.sli.core.sliapi.rev161110;
2 import org.opendaylight.yangtools.yang.binding.DataObject;
3 import org.opendaylight.yangtools.yang.common.QName;
4
5 /**
6  * <p>This class represents the following YANG schema fragment defined in module <b>SLI-API</b>
7  * <pre>
8  * grouping response-fields {
9  *     leaf response-code {
10  *         type string;
11  *     }
12  *     leaf ack-final-indicator {
13  *         type string;
14  *     }
15  *     leaf response-message {
16  *         type string;
17  *     }
18  *     leaf context-memory-json {
19  *         type string;
20  *     }
21  * }
22  * </pre>
23  * The schema path to identify an instance is
24  * <i>SLI-API/response-fields</i>
25  *
26  */
27 public interface ResponseFields
28     extends
29     DataObject
30 {
31
32
33
34     public static final QName QNAME = org.opendaylight.yangtools.yang.common.QName.create("org:onap:ccsdk:sli:core:sliapi",
35         "2016-11-10", "response-fields").intern();
36
37     /**
38      * @return <code>java.lang.String</code> <code>responseCode</code>, or <code>null</code> if not present
39      */
40     java.lang.String getResponseCode();
41     
42     /**
43      * @return <code>java.lang.String</code> <code>ackFinalIndicator</code>, or <code>null</code> if not present
44      */
45     java.lang.String getAckFinalIndicator();
46     
47     /**
48      * @return <code>java.lang.String</code> <code>responseMessage</code>, or <code>null</code> if not present
49      */
50     java.lang.String getResponseMessage();
51     
52     /**
53      * @return <code>java.lang.String</code> <code>contextMemoryJson</code>, or <code>null</code> if not present
54      */
55     java.lang.String getContextMemoryJson();
56
57 }
58