Change GetConfigReq/Res and SetConfig factories to version assignable
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / deserialization / factories / GetConfigReplyMessageFactory.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.deserialization.factories;
10
11 import io.netty.buffer.ByteBuf;
12
13 import org.opendaylight.openflowjava.protocol.api.extensibility.OFDeserializer;
14 import org.opendaylight.openflowjava.protocol.api.util.EncodeConstants;
15 import org.opendaylight.openflowjava.protocol.impl.util.VersionAssignableFactory;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev130731.SwitchConfigFlag;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.GetConfigOutput;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.protocol.rev130731.GetConfigOutputBuilder;
19
20 /**
21  * Translates GetConfigReply messages.
22  * OF protocol versions: 1.0, 1.3, 1.4, 1.5.
23  * @author michal.polkorab
24  * @author timotej.kubas
25  */
26 public class GetConfigReplyMessageFactory extends VersionAssignableFactory implements OFDeserializer<GetConfigOutput> {
27
28     @Override
29     public GetConfigOutput deserialize(ByteBuf rawMessage) {
30         GetConfigOutputBuilder builder = new GetConfigOutputBuilder();
31         builder.setVersion(getVersion());
32         builder.setXid(rawMessage.readUnsignedInt());
33         builder.setFlags(SwitchConfigFlag.forValue(rawMessage.readUnsignedShort()));
34         builder.setMissSendLen(rawMessage.readUnsignedShort());
35         return builder.build();
36     }
37 }