aboutsummaryrefslogtreecommitdiffstats
path: root/sli/model/src/main/yang-gen-sal/org/opendaylight/yang/gen/v1/org/onap/ccsdk/sli/core/sliapi/rev161110/ResponseFields.java
blob: 440beea038ee08968285881c064b306a082ed3a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package org.opendaylight.yang.gen.v1.org.onap.ccsdk.sli.core.sliapi.rev161110;
import org.opendaylight.yangtools.yang.binding.DataObject;
import org.opendaylight.yangtools.yang.common.QName;

/**
 * <p>This class represents the following YANG schema fragment defined in module <b>SLI-API</b>
 * <pre>
 * grouping response-fields {
 *     leaf response-code {
 *         type string;
 *     }
 *     leaf ack-final-indicator {
 *         type string;
 *     }
 *     leaf response-message {
 *         type string;
 *     }
 *     leaf context-memory-json {
 *         type string;
 *     }
 * }
 * </pre>
 * The schema path to identify an instance is
 * <i>SLI-API/response-fields</i>
 *
 */
public interface ResponseFields
    extends
    DataObject
{



    public static final QName QNAME = org.opendaylight.yangtools.yang.common.QName.create("org:onap:ccsdk:sli:core:sliapi",
        "2016-11-10", "response-fields").intern();

    /**
     * @return <code>java.lang.String</code> <code>responseCode</code>, or <code>null</code> if not present
     */
    java.lang.String getResponseCode();
    
    /**
     * @return <code>java.lang.String</code> <code>ackFinalIndicator</code>, or <code>null</code> if not present
     */
    java.lang.String getAckFinalIndicator();
    
    /**
     * @return <code>java.lang.String</code> <code>responseMessage</code>, or <code>null</code> if not present
     */
    java.lang.String getResponseMessage();
    
    /**
     * @return <code>java.lang.String</code> <code>contextMemoryJson</code>, or <code>null</code> if not present
     */
    java.lang.String getContextMemoryJson();

}