6737cf55c892f9c4f4b3847823464888a1da2fa0
[mdsal.git] / yang / yang-binding / src / main / java / org / opendaylight / yangtools / yang / binding / NotificationListener.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. 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 java.util.EventListener;
11
12 /**
13  * Marker interface for generated notification listener interfaces. This interface
14  * exists solely as support for generated code. Users should never implement this
15  * interface directly, but rather implement one of the sub-interfaces generated
16  * from a YANG model.
17  *
18  * <p>
19  * The subclasses of this interface have callbacks for events, which are derived
20  * from {@link Notification} class in form void
21  * on{NotificationType}(NotificationType notification).
22  *
23  * <p>
24  * E.g. if we have notification SessionUp the callback will have signature:
25  * <code>void  onSessionUp(SessionUp notification)</code>
26  */
27 public interface NotificationListener extends EventListener {
28
29 }