04878ac6492865ebbb5768cd228c1d56838b1a81
[openflowplugin.git] / openflowjava / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / deserialization / factories / BarrierInputMessageFactory.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 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.impl.util.VersionAssignableFactory;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.BarrierInput;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.BarrierInputBuilder;
17
18 /**
19  * Translates BarrierRequest messages.
20  * OF protocol versions: 1.0, 1.3, 1.4, 1.5.
21  * @author giuseppex.petralia@intel.com
22  */
23 public class BarrierInputMessageFactory extends VersionAssignableFactory implements OFDeserializer<BarrierInput> {
24
25     @Override
26     public BarrierInput deserialize(ByteBuf rawMessage) {
27         return new BarrierInputBuilder()
28                 .setVersion(getVersion())
29                 .setXid(readUint32(rawMessage))
30                 .build();
31     }
32 }