X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=bgp%2Fparser-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fprotocol%2Fbgp%2Fparser%2FBGPSession.java;h=70419995bbb07b673446148a46a7d61e013a3c1e;hb=a397aa4828919cc643647c96f5c916ee211f597f;hp=df16515ab35aed9dc681805e1647de1ed80d360e;hpb=35bce020a9c4fecb31e9962e5629b3d5a1bd0c47;p=bgpcep.git diff --git a/bgp/parser-api/src/main/java/org/opendaylight/protocol/bgp/parser/BGPSession.java b/bgp/parser-api/src/main/java/org/opendaylight/protocol/bgp/parser/BGPSession.java index df16515ab3..70419995bb 100644 --- a/bgp/parser-api/src/main/java/org/opendaylight/protocol/bgp/parser/BGPSession.java +++ b/bgp/parser-api/src/main/java/org/opendaylight/protocol/bgp/parser/BGPSession.java @@ -19,29 +19,29 @@ import org.opendaylight.yangtools.yang.binding.Notification; * BGP Session represents the finite state machine in BGP, including timers and its purpose is to create a BGP * connection between BGP speakers. Session is automatically started, when TCP connection is created, but can be stopped * manually via close method of the Closeable interface. - * + * * If the session is up, it has to redirect messages to/from user. Handles also malformed messages and unknown requests. */ public interface BGPSession extends ProtocolSession { - /** - * Return the list of tables which the peer has advertized to support. - * - * @return Set of tables which it supports. - */ + /** + * Return the list of tables which the peer has advertized to support. + * + * @return Set of tables which it supports. + */ - Set getAdvertisedTableTypes(); + Set getAdvertisedTableTypes(); - /** - * Return the BGP router ID advertized by the peer. - * - * @return Peer's BGP Router ID. - */ - Ipv4Address getBgpId(); + /** + * Return the BGP router ID advertized by the peer. + * + * @return Peer's BGP Router ID. + */ + Ipv4Address getBgpId(); - /** - * Return the AS number which the peer advertizes. - * - * @return Peer's AS Number - */ - AsNumber getAsNumber(); + /** + * Return the AS number which the peer advertizes. + * + * @return Peer's AS Number + */ + AsNumber getAsNumber(); }