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 / SupiRange.java
1 package org.opendaylight.yang.gen.v1.urn._3gpp.tsg.sa5.nrm.types.rev180731;
2 import java.lang.String;
3 import org.eclipse.jdt.annotation.Nullable;
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 SupiRange {
13  *   leaf start {
14  *     type string;
15  *   }
16  *   leaf end {
17  *     type string;
18  *   }
19  *   leaf pattern {
20  *     type string;
21  *   }
22  * }
23  * </pre>The schema path to identify an instance is
24  * <i>_3gpp-common-yang-types/SupiRange</i>
25  *
26  */
27 public interface SupiRange
28     extends
29     DataObject
30 {
31
32
33
34     public static final QName QNAME = $YangModuleInfoImpl.qnameOf("SupiRange");
35
36     /**
37      * @return <code>java.lang.String</code> <code>start</code>, or <code>null</code> if not present
38      */
39     @Nullable String getStart();
40     
41     /**
42      * @return <code>java.lang.String</code> <code>end</code>, or <code>null</code> if not present
43      */
44     @Nullable String getEnd();
45     
46     /**
47      * @return <code>java.lang.String</code> <code>pattern</code>, or <code>null</code> if not present
48      */
49     @Nullable String getPattern();
50
51 }
52