af199a54691acd00495520604f1eba2f63379128
[bgpcep.git] / bgp / parser-api / src / main / java / org / opendaylight / protocol / bgp / parser / message / BGPKeepAliveMessage.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.bgp.parser.message;
9
10 import org.opendaylight.protocol.bgp.parser.BGPMessage;
11
12 /**
13  * BGP KeepAlive message. Always empty.
14  * 
15  * @see <a href="http://tools.ietf.org/html/rfc4271#section-4.4">BGP KeepAlive message</a>
16  */
17 public final class BGPKeepAliveMessage implements BGPMessage {
18
19         private static final long serialVersionUID = 5469664138660829255L;
20
21         /**
22          * Creates a BGP KeepAlive message.
23          */
24         public BGPKeepAliveMessage() {
25
26         }
27 }