Bug 2756 - Action model update
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / deserialization / action / OF10SetNwSrcActionDeserializer.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.action;
10
11 import io.netty.buffer.ByteBuf;
12
13 import org.opendaylight.openflowjava.protocol.api.util.EncodeConstants;
14 import org.opendaylight.openflowjava.util.ByteBufUtils;
15 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev100924.Ipv4Address;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev150203.action.grouping.ActionChoice;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev150203.action.grouping.action.choice.SetNwSrcCaseBuilder;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev150203.action.grouping.action.choice.set.nw.src._case.SetNwSrcActionBuilder;
19 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev150203.actions.grouping.Action;
20 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev150203.actions.grouping.ActionBuilder;
21
22 /**
23  * @author michal.polkorab
24  *
25  */
26 public class OF10SetNwSrcActionDeserializer extends AbstractActionDeserializer {
27
28     @Override
29     public Action deserialize(final ByteBuf input) {
30         ActionBuilder builder = new ActionBuilder();
31         input.skipBytes(2 * EncodeConstants.SIZE_OF_SHORT_IN_BYTES);
32         SetNwSrcCaseBuilder caseBuilder = new SetNwSrcCaseBuilder();
33         SetNwSrcActionBuilder actionBuilder = new SetNwSrcActionBuilder();
34         actionBuilder.setIpAddress(new Ipv4Address(ByteBufUtils.readIpv4Address(input)));
35         caseBuilder.setSetNwSrcAction(actionBuilder.build());
36         builder.setActionChoice(caseBuilder.build());
37         return builder.build();
38     }
39
40     @Override
41     protected ActionChoice getType() {
42         return new SetNwSrcCaseBuilder().build();
43     }
44
45 }