Add methods for experimenter (de)serializer registration
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / deserialization / factories / SetConfigInputMessageFactory.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.impl.util.VersionAssignableFactory;
13 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev130731.SwitchConfigFlag;
14 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.SetConfigInput;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.SetConfigInputBuilder;
16
17 /**
18  * Translates SetConfig messages.
19  * OF protocol versions: 1.0, 1.3, 1.4, 1.5.
20  * @author giuseppex.petralia@intel.com
21  */
22 public class SetConfigInputMessageFactory extends VersionAssignableFactory implements OFDeserializer<SetConfigInput> {
23
24     @Override
25     public SetConfigInput deserialize(ByteBuf rawMessage) {
26         SetConfigInputBuilder builder = new SetConfigInputBuilder();
27         builder.setVersion(getVersion());
28         builder.setXid(rawMessage.readUnsignedInt());
29         builder.setFlags(SwitchConfigFlag.forValue(rawMessage.readUnsignedShort()));
30         builder.setMissSendLen(rawMessage.readUnsignedShort());
31         return builder.build();
32     }
33
34 }