/* * Copyright (c) 2019 PANTHEON.tech, s.r.o. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.yangtools.yang.binding; import com.google.common.annotations.Beta; /** * An {@code notification} which is defined within the schema tree and is thus tied to a data tree instance and * additionally its parent is a {code list} with a {@code key} statement. A concrete KeyedListNotification and its * implementations may choose to also extend/implement the {@link EventInstantAware} interface. In case they do, * {@link EventInstantAware#eventInstant()} returns the time when this notification was generated. * * @param Concrete notification type * @param Parent data tree instance type * @param Parent data tree key type */ @Beta public interface KeyedListNotification, T extends DataObject & Identifiable, K extends Identifier> extends InstanceNotification { }