a1723d730ddf42530a1e678567c7b48f52a0d551
[ccsdk/sli.git] /
1 package org.opendaylight.yang.gen.v1.org.onap.ccsdk.sli.core.sliapi.rev161110;
2 import org.opendaylight.yangtools.yang.binding.ChildOf;
3 import org.opendaylight.yangtools.yang.common.QName;
4 import java.util.List;
5 import org.opendaylight.yang.gen.v1.org.onap.ccsdk.sli.core.sliapi.rev161110.test.results.TestResult;
6 import org.opendaylight.yangtools.yang.binding.Augmentable;
7
8 /**
9  * Test results
10  *
11  * <p>This class represents the following YANG schema fragment defined in module <b>SLI-API</b>
12  * <pre>
13  * container test-results {
14  *     list test-result {
15  *         key "test-identifier"
16  *         leaf test-identifier {
17  *             type string;
18  *         }
19  *         leaf-list results {
20  *             type string;
21  *         }
22  *     }
23  * }
24  * </pre>
25  * The schema path to identify an instance is
26  * <i>SLI-API/test-results</i>
27  *
28  * <p>To create instances of this class use {@link org.opendaylight.yang.gen.v1.org.onap.ccsdk.sli.core.sliapi.rev161110.TestResultsBuilder}.
29  * @see org.opendaylight.yang.gen.v1.org.onap.ccsdk.sli.core.sliapi.rev161110.TestResultsBuilder
30  *
31  */
32 public interface TestResults
33     extends
34     ChildOf<SLIAPIData>,
35     Augmentable<org.opendaylight.yang.gen.v1.org.onap.ccsdk.sli.core.sliapi.rev161110.TestResults>
36 {
37
38
39
40     public static final QName QNAME = org.opendaylight.yangtools.yang.common.QName.create("org:onap:ccsdk:sli:core:sliapi",
41         "2016-11-10", "test-results").intern();
42
43     /**
44      * @return <code>java.util.List</code> <code>testResult</code>, or <code>null</code> if not present
45      */
46     List<TestResult> getTestResult();
47
48 }
49