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 / NFServiceVersion.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.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.DateAndTime;
5 import org.opendaylight.yangtools.yang.binding.DataObject;
6 import org.opendaylight.yangtools.yang.common.QName;
7
8 /**
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 NFServiceVersion {
14  *   leaf apiVersionInUri {
15  *     type string;
16  *   }
17  *   leaf apiFullVersion {
18  *     type string;
19  *   }
20  *   leaf expiry {
21  *     type yang:date-and-time;
22  *   }
23  * }
24  * </pre>The schema path to identify an instance is
25  * <i>_3gpp-common-yang-types/NFServiceVersion</i>
26  *
27  */
28 public interface NFServiceVersion
29     extends
30     DataObject
31 {
32
33
34
35     public static final QName QNAME = $YangModuleInfoImpl.qnameOf("NFServiceVersion");
36
37     /**
38      * @return <code>java.lang.String</code> <code>apiVersionInUri</code>, or <code>null</code> if not present
39      */
40     @Nullable String getApiVersionInUri();
41     
42     /**
43      * @return <code>java.lang.String</code> <code>apiFullVersion</code>, or <code>null</code> if not present
44      */
45     @Nullable String getApiFullVersion();
46     
47     /**
48      * @return <code>org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.yang.types.rev130715.DateAndTime</code> <code>expiry</code>, or <code>null</code> if not present
49      */
50     @Nullable DateAndTime getExpiry();
51
52 }
53