Clean up version setters
[openflowplugin.git] / openflowjava / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / deserialization / factories / OF10HelloMessageFactory.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 package org.opendaylight.openflowjava.protocol.impl.deserialization.factories;
9
10 import static org.opendaylight.yangtools.yang.common.netty.ByteBufUtils.readUint32;
11
12 import io.netty.buffer.ByteBuf;
13 import org.opendaylight.openflowjava.protocol.api.extensibility.OFDeserializer;
14 import org.opendaylight.openflowjava.protocol.api.util.EncodeConstants;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.HelloMessage;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.HelloMessageBuilder;
17
18 /**
19  * Translates Hello messages (OpenFlow v1.0).
20  *
21  * @author michal.polkorab
22  */
23 public class OF10HelloMessageFactory implements OFDeserializer<HelloMessage> {
24
25     @Override
26     public HelloMessage deserialize(ByteBuf rawMessage) {
27         HelloMessageBuilder builder = new HelloMessageBuilder()
28                 .setVersion(EncodeConstants.OF_VERSION_1_0)
29                 .setXid(readUint32(rawMessage));
30         if (rawMessage.readableBytes() > 0) {
31             rawMessage.skipBytes(rawMessage.readableBytes());
32         }
33         return builder.build();
34     }
35 }