1 package org.opendaylight.yang.gen.v1.org.onap.ccsdk.sli.core.sliapi.rev161110.test.results;
2 import org.opendaylight.yangtools.yang.binding.ChildOf;
3 import org.opendaylight.yangtools.yang.common.QName;
4 import org.opendaylight.yang.gen.v1.org.onap.ccsdk.sli.core.sliapi.rev161110.TestResults;
6 import org.opendaylight.yangtools.yang.binding.Augmentable;
7 import org.opendaylight.yangtools.yang.binding.Identifiable;
10 * <p>This class represents the following YANG schema fragment defined in module <b>SLI-API</b>
13 * key "test-identifier"
14 * leaf test-identifier {
22 * The schema path to identify an instance is
23 * <i>SLI-API/test-results/test-result</i>
25 * <p>To create instances of this class use {@link org.opendaylight.yang.gen.v1.org.onap.ccsdk.sli.core.sliapi.rev161110.test.results.TestResultBuilder}.
26 * @see org.opendaylight.yang.gen.v1.org.onap.ccsdk.sli.core.sliapi.rev161110.test.results.TestResultBuilder
27 * @see org.opendaylight.yang.gen.v1.org.onap.ccsdk.sli.core.sliapi.rev161110.test.results.TestResultKey
30 public interface TestResult
33 Augmentable<org.opendaylight.yang.gen.v1.org.onap.ccsdk.sli.core.sliapi.rev161110.test.results.TestResult>,
34 Identifiable<TestResultKey>
39 public static final QName QNAME = org.opendaylight.yangtools.yang.common.QName.create("org:onap:ccsdk:sli:core:sliapi",
40 "2016-11-10", "test-result").intern();
43 * @return <code>java.lang.String</code> <code>testIdentifier</code>, or <code>null</code> if not present
45 java.lang.String getTestIdentifier();
48 * @return <code>java.util.List</code> <code>results</code>, or <code>null</code> if not present
50 List<java.lang.String> getResults();
53 * Returns Primary Key of Yang List Type
57 * @return <code>org.opendaylight.yang.gen.v1.org.onap.ccsdk.sli.core.sliapi.rev161110.test.results.TestResultKey</code> <code>key</code>, or <code>null</code> if not present
59 TestResultKey getKey();