Create VES client example for domain 'notification'
[oam.git] / features / devicemanager / g-ran / ru-fh / provider / src / main / java / org / opendaylight / yang / gen / v1 / urn / _3gpp / tsg / sa5 / nrm / types / rev180731 / Tai.java
1 package org.opendaylight.yang.gen.v1.urn._3gpp.tsg.sa5.nrm.types.rev180731;
2 import org.eclipse.jdt.annotation.Nullable;
3 import org.opendaylight.yang.gen.v1.urn._3gpp.tsg.sa5.nrm.types.rev180731.tai.PlmnId;
4 import org.opendaylight.yangtools.yang.binding.DataObject;
5 import org.opendaylight.yangtools.yang.common.QName;
6
7 /**
8  *
9  * <p>
10  * This class represents the following YANG schema fragment defined in module <b>_3gpp-common-yang-types</b>
11  * <pre>
12  * grouping Tai {
13  *   container plmnId {
14  *     uses pLMNId;
15  *   }
16  *   leaf tac {
17  *     type t_tAC;
18  *   }
19  * }
20  * </pre>The schema path to identify an instance is
21  * <i>_3gpp-common-yang-types/Tai</i>
22  *
23  */
24 public interface Tai
25     extends
26     DataObject
27 {
28
29
30
31     public static final QName QNAME = $YangModuleInfoImpl.qnameOf("Tai");
32
33     /**
34      * @return <code>org.opendaylight.yang.gen.v1.urn._3gpp.tsg.sa5.nrm.types.rev180731.tai.PlmnId</code> <code>plmnId</code>, or <code>null</code> if not present
35      */
36     @Nullable PlmnId getPlmnId();
37     
38     /**
39      * @return <code>org.opendaylight.yang.gen.v1.urn._3gpp.tsg.sa5.nrm.types.rev180731.TTAC</code> <code>tac</code>, or <code>null</code> if not present
40      */
41     @Nullable TTAC getTac();
42
43 }
44