package org.opendaylight.yang.gen.v1.org.onap.ccsdk.sli.core.sliapi.rev161110.test.results; import org.opendaylight.yangtools.yang.binding.ChildOf; import org.opendaylight.yangtools.yang.common.QName; import org.opendaylight.yang.gen.v1.org.onap.ccsdk.sli.core.sliapi.rev161110.TestResults; import java.util.List; import org.opendaylight.yangtools.yang.binding.Augmentable; import org.opendaylight.yangtools.yang.binding.Identifiable; /** *

This class represents the following YANG schema fragment defined in module SLI-API *

 * list test-result {
 *     key "test-identifier"
 *     leaf test-identifier {
 *         type string;
 *     }
 *     leaf-list results {
 *         type string;
 *     }
 * }
 * 
* The schema path to identify an instance is * SLI-API/test-results/test-result * *

To create instances of this class use {@link org.opendaylight.yang.gen.v1.org.onap.ccsdk.sli.core.sliapi.rev161110.test.results.TestResultBuilder}. * @see org.opendaylight.yang.gen.v1.org.onap.ccsdk.sli.core.sliapi.rev161110.test.results.TestResultBuilder * @see org.opendaylight.yang.gen.v1.org.onap.ccsdk.sli.core.sliapi.rev161110.test.results.TestResultKey * */ public interface TestResult extends ChildOf, Augmentable, Identifiable { public static final QName QNAME = org.opendaylight.yangtools.yang.common.QName.create("org:onap:ccsdk:sli:core:sliapi", "2016-11-10", "test-result").intern(); /** * @return java.lang.String testIdentifier, or null if not present */ java.lang.String getTestIdentifier(); /** * @return java.util.List results, or null if not present */ List getResults(); /** * Returns Primary Key of Yang List Type * * * * @return org.opendaylight.yang.gen.v1.org.onap.ccsdk.sli.core.sliapi.rev161110.test.results.TestResultKey key, or null if not present */ TestResultKey getKey(); }