Get rid of JSR305 annotations
[bgpcep.git] / pcep / api / src / main / java / org / opendaylight / protocol / pcep / PCEPSessionListener.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.protocol.pcep;
9
10 import java.util.EventListener;
11 import org.eclipse.jdt.annotation.NonNullByDefault;
12 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev181109.Message;
13
14 /**
15  * Listener that receives session informations from the session.
16  */
17 @NonNullByDefault
18 public interface PCEPSessionListener extends EventListener {
19     /**
20      * Fired when the session was established successfully.
21      *
22      * @param session Peer address families which we accepted
23      */
24     void onSessionUp(PCEPSession session);
25
26     /**
27      * Fired when the session went down because of an IO error. Implementation should take care of closing underlying
28      * session.
29      *
30      * @param session   that went down
31      * @param exception Exception that was thrown as the cause of session being down
32      */
33     void onSessionDown(PCEPSession session, Exception exception);
34
35     /**
36      * Fired when the session is terminated locally. The session has already been closed and transitioned to IDLE state.
37      * Any outstanding queued messages were not sent. The user should not attempt to make any use of the session.
38      *
39      * @param reason the cause why the session went down
40      */
41     void onSessionTerminated(PCEPSession session, PCEPTerminationReason reason);
42
43     /**
44      * Fired when a normal protocol message is received.
45      *
46      * @param message Protocol message
47      */
48     void onMessage(PCEPSession session, Message message);
49 }