BUG-48: more implementation
[bgpcep.git] / pcep / api / src / main / java / org / opendaylight / protocol / pcep / PCEPSession.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 io.netty.util.concurrent.Future;
11
12 import java.net.InetAddress;
13
14 import org.opendaylight.protocol.framework.ProtocolSession;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.Message;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.pcep.types.rev131005.open.object.open.Tlvs;
17
18 /**
19  * PCEP Session represents the finite state machine in PCEP, including timers and its purpose is to create a PCEP
20  * connection between PCE/PCC. Session is automatically started, when TCP connection is created, but can be stopped
21  * manually. If the session is up, it has to redirect messages to/from user. Handles also malformed messages and unknown
22  * requests.
23  */
24 public interface PCEPSession extends ProtocolSession<Message> {
25
26         /**
27          * Sends message from user to PCE/PCC. If the user sends an Open Message, the session returns an error (open message
28          * is only allowed, when a PCEP handshake is in progress). Close message will close the session and free all the
29          * resources.
30          * 
31          * @param message message to be sent
32          * @return Future promise which will be succeed when the message is enqueued in the socket.
33          */
34         Future<Void> sendMessage(Message message);
35
36         public void close(TerminationReason reason);
37
38         public Tlvs getRemoteTlvs();
39
40         public InetAddress getRemoteAddress();
41 }