Add codegen support for nested notifications
[mdsal.git] / binding / yang-binding / src / main / java / org / opendaylight / yangtools / yang / binding / KeyedListNotification.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
12 /**
13  * An {@code notification} which is defined within the schema tree and is thus tied to a data tree instance and
14  * additionally its parent is a {code list} with a {@code key} statement. A concrete KeyedListNotification 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  * @param <K> Parent data tree key type
21  */
22 @Beta
23 public interface KeyedListNotification<N extends KeyedListNotification<N, T, K>, T extends DataObject & Identifiable<K>,
24     K extends Identifier<T>> extends InstanceNotification<N, T> {
25
26 }