Fix checkstyle violations in openflow-protocol-impl - part 2
[openflowplugin.git] / openflowjava / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / deserialization / factories / OF10FeaturesRequestMessageFactory.java
1 /*
2  * Copyright (c) 2015 NetIDE Consortium 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 io.netty.buffer.ByteBuf;
11 import org.opendaylight.openflowjava.protocol.api.extensibility.OFDeserializer;
12 import org.opendaylight.openflowjava.protocol.api.util.EncodeConstants;
13 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.GetFeaturesInput;
14 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.GetFeaturesInputBuilder;
15
16 /**
17  * Translates GetFeaturesInput messages.
18  *
19  * @author giuseppex.petralia@intel.com
20  */
21 public class OF10FeaturesRequestMessageFactory implements OFDeserializer<GetFeaturesInput> {
22
23     @Override
24     public GetFeaturesInput deserialize(ByteBuf rawMessage) {
25         GetFeaturesInputBuilder builder = new GetFeaturesInputBuilder();
26         builder.setVersion((short) EncodeConstants.OF10_VERSION_ID);
27         builder.setXid(rawMessage.readUnsignedInt());
28         return builder.build();
29     }
30 }