package org.opendaylight.yang.gen.v1.urn._3gpp.tsg.sa5.nrm.types.rev180731; import org.eclipse.jdt.annotation.Nullable; import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Uri; import org.opendaylight.yangtools.yang.binding.DataObject; import org.opendaylight.yangtools.yang.common.QName; /** * *

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

 * grouping defaultNotificationSubscription {
 *   leaf notificationType {
 *     type NotificationType;
 *   }
 *   leaf callbackUri {
 *     type inet:uri;
 *   }
 *   leaf n1MessageClass {
 *     type N1MessageClass;
 *   }
 *   leaf n2InformationClass {
 *     type N2InformationClass;
 *   }
 * }
 * 
The schema path to identify an instance is * _3gpp-common-yang-types/defaultNotificationSubscription * */ public interface DefaultNotificationSubscription extends DataObject { public static final QName QNAME = $YangModuleInfoImpl.qnameOf("defaultNotificationSubscription"); /** * @return org.opendaylight.yang.gen.v1.urn._3gpp.tsg.sa5.nrm.types.rev180731.NotificationType notificationType, or null if not present */ @Nullable NotificationType getNotificationType(); /** * @return org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Uri callbackUri, or null if not present */ @Nullable Uri getCallbackUri(); /** * @return org.opendaylight.yang.gen.v1.urn._3gpp.tsg.sa5.nrm.types.rev180731.N1MessageClass n1MessageClass, or null if not present */ @Nullable N1MessageClass getN1MessageClass(); /** * @return org.opendaylight.yang.gen.v1.urn._3gpp.tsg.sa5.nrm.types.rev180731.N2InformationClass n2InformationClass, or null if not present */ @Nullable N2InformationClass getN2InformationClass(); }