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 / PLMNId.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.yangtools.yang.binding.DataObject;
4 import org.opendaylight.yangtools.yang.common.QName;
5
6 /**
7  * A Public Land Mobile Network is uniquely identified by its PLMN identifier. 
8  * PLMN-Id consists of Mobile Country Code (MCC) and Mobile Network Code (MNC).
9  *
10  * <p>
11  * This class represents the following YANG schema fragment defined in module <b>_3gpp-common-yang-types</b>
12  * <pre>
13  * grouping pLMNId {
14  *   leaf MCC {
15  *     type t_mcc;
16  *   }
17  *   leaf MNC {
18  *     type t_mnc;
19  *   }
20  * }
21  * </pre>The schema path to identify an instance is
22  * <i>_3gpp-common-yang-types/pLMNId</i>
23  *
24  */
25 public interface PLMNId
26     extends
27     DataObject
28 {
29
30
31
32     public static final QName QNAME = $YangModuleInfoImpl.qnameOf("pLMNId");
33
34     /**
35      * Mobile Country Code (MCC), consisting of three decimal digits.The MCC identifies
36      * uniquely the country of domicile of the mobile subscription.
37      *
38      *
39      *
40      * @return <code>org.opendaylight.yang.gen.v1.urn._3gpp.tsg.sa5.nrm.types.rev180731.TMcc</code> <code>mCC</code>, or <code>null</code> if not present
41      */
42     @Nullable TMcc getMCC();
43     
44     /**
45      * Mobile Network Code (MNC), consisting of two or three decimal digits.The MNC 
46      * identifies the home PLMN of the mobile subscription.
47      *
48      *
49      *
50      * @return <code>org.opendaylight.yang.gen.v1.urn._3gpp.tsg.sa5.nrm.types.rev180731.TMnc</code> <code>mNC</code>, or <code>null</code> if not present
51      */
52     @Nullable TMnc getMNC();
53
54 }
55