Seal BaseNotification
[mdsal.git] / binding / yang-binding / src / main / java / org / opendaylight / yangtools / yang / binding / InstanceNotification.java
1 /*
2  * Copyright (c) 2019 PANTHEON.tech, s.r.o. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.yangtools.yang.binding;
9
10 import com.google.common.annotations.Beta;
11 import org.eclipse.jdt.annotation.NonNull;
12
13 /**
14  * Marker interface for YANG-defined instance {@code notification}s. A concrete InstanceNotification and its
15  * implementations may choose to also extend/implement the {@link EventInstantAware} interface. In case they do,
16  * {@link EventInstantAware#eventInstant()} returns the time when this notification was generated.
17  *
18  * @param <N> Concrete notification type
19  * @param <T> Parent data tree instance type
20  */
21 @Beta
22 public non-sealed interface InstanceNotification<N extends InstanceNotification<N, T>, T extends DataObject>
23         extends BaseNotification {
24     @Override
25     @NonNull Class<N> implementedInterface();
26 }