From 149a57edf72762c7e0eb4062851c06356e6a75ab Mon Sep 17 00:00:00 2001 From: herbert Date: Thu, 30 Jan 2020 12:08:35 +0100 Subject: SDN-R add updated devicemanager add updated devicemanager and specific devicemanagers Issue-ID: SDNC-1039 Signed-off-by: herbert Change-Id: I16f4c8d78da95ab12dbb50e50dfb561a85e8d6a2 Signed-off-by: herbert --- .../_3gpp/tsg/sa5/nrm/types/rev180731/PLMNId.java | 55 ++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 sdnr/wt/devicemanager-gran/provider/src/main/java/org/opendaylight/yang/gen/v1/urn/_3gpp/tsg/sa5/nrm/types/rev180731/PLMNId.java (limited to 'sdnr/wt/devicemanager-gran/provider/src/main/java/org/opendaylight/yang/gen/v1/urn/_3gpp/tsg/sa5/nrm/types/rev180731/PLMNId.java') diff --git a/sdnr/wt/devicemanager-gran/provider/src/main/java/org/opendaylight/yang/gen/v1/urn/_3gpp/tsg/sa5/nrm/types/rev180731/PLMNId.java b/sdnr/wt/devicemanager-gran/provider/src/main/java/org/opendaylight/yang/gen/v1/urn/_3gpp/tsg/sa5/nrm/types/rev180731/PLMNId.java new file mode 100644 index 000000000..24bb8d6d5 --- /dev/null +++ b/sdnr/wt/devicemanager-gran/provider/src/main/java/org/opendaylight/yang/gen/v1/urn/_3gpp/tsg/sa5/nrm/types/rev180731/PLMNId.java @@ -0,0 +1,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). + * + *

+ * This class represents the following YANG schema fragment defined in module _3gpp-common-yang-types + *

+ * grouping pLMNId {
+ *   leaf MCC {
+ *     type t_mcc;
+ *   }
+ *   leaf MNC {
+ *     type t_mnc;
+ *   }
+ * }
+ * 
The schema path to identify an instance is + * _3gpp-common-yang-types/pLMNId + * + */ +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 org.opendaylight.yang.gen.v1.urn._3gpp.tsg.sa5.nrm.types.rev180731.TMcc mCC, or null 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 org.opendaylight.yang.gen.v1.urn._3gpp.tsg.sa5.nrm.types.rev180731.TMnc mNC, or null if not present + */ + @Nullable TMnc getMNC(); + +} + -- cgit 1.2.3-korg