Remove trailing whitespace
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / core / VersionMessageWrapper.java
1 /*
2  * Copyright (c) 2013 Pantheon Technologies s.r.o. 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
9 package org.opendaylight.openflowjava.protocol.impl.core;
10
11 import io.netty.buffer.ByteBuf;
12
13 /**
14  * Wraps received messages (includes version)
15  * @author michal.polkorab
16  */
17 public class VersionMessageWrapper {
18
19     private short version;
20     private ByteBuf messageBuffer;
21
22     /**
23      * Constructor
24      * @param version version decoded in {@link OFVersionDetector}
25      * @param messageBuffer message received from {@link OFFrameDecoder}
26      */
27     public VersionMessageWrapper(short version, ByteBuf messageBuffer) {
28         this.version = version;
29         this.messageBuffer = messageBuffer;
30     }
31
32     /**
33      * @return the version version decoded in {@link OFVersionDetector}
34      */
35     public short getVersion() {
36         return version;
37     }
38
39     /**
40      * @return the messageBuffer message received from {@link OFFrameDecoder}
41      */
42     public ByteBuf getMessageBuffer() {
43         return messageBuffer;
44     }
45
46
47 }