aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/devicemanager-gran/provider/src/main/java/org/opendaylight/yang/gen/v1/urn/_3gpp/tsg/sa5/nrm/types/rev180731/PLMNId.java
blob: 24bb8d6d5d70f81b61403eb9f2ca648086ee12e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package org.opendaylight.yang.gen.v1.urn._3gpp.tsg.sa5.nrm.types.rev180731;
import org.eclipse.jdt.annotation.Nullable;
import org.opendaylight.yangtools.yang.binding.DataObject;
import org.opendaylight.yangtools.yang.common.QName;

/**
 * A Public Land Mobile Network is uniquely identified by its PLMN identifier. 
 * PLMN-Id consists of Mobile Country Code (MCC) and Mobile Network Code (MNC).
 *
 * <p>
 * This class represents the following YANG schema fragment defined in module <b>_3gpp-common-yang-types</b>
 * <pre>
 * grouping pLMNId {
 *   leaf MCC {
 *     type t_mcc;
 *   }
 *   leaf MNC {
 *     type t_mnc;
 *   }
 * }
 * </pre>The schema path to identify an instance is
 * <i>_3gpp-common-yang-types/pLMNId</i>
 *
 */
public interface PLMNId
    extends
    DataObject
{



    public static final QName QNAME = $YangModuleInfoImpl.qnameOf("pLMNId");

    /**
     * Mobile Country Code (MCC), consisting of three decimal digits.The MCC identifies
     * uniquely the country of domicile of the mobile subscription.
     *
     *
     *
     * @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
     */
    @Nullable TMcc getMCC();
    
    /**
     * Mobile Network Code (MNC), consisting of two or three decimal digits.The MNC 
     * identifies the home PLMN of the mobile subscription.
     *
     *
     *
     * @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
     */
    @Nullable TMnc getMNC();

}