Fix checkstyle violations in openflow-protocol-impl - part 2
[openflowplugin.git] / openflowjava / 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 import org.opendaylight.openflowjava.protocol.api.util.EncodeConstants;
13 import org.opendaylight.openflowjava.util.ByteBufUtils;
14 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev150203.action.grouping.ActionChoice;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev150203.action.grouping.action.choice.SetNwSrcCaseBuilder;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev150203.action.grouping.action.choice.set.nw.src._case.SetNwSrcActionBuilder;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev150203.actions.grouping.Action;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev150203.actions.grouping.ActionBuilder;
19
20 /**
21  * OF10SetNwSrcActionDeserializer.
22  *
23  * @author michal.polkorab
24  */
25 public class OF10SetNwSrcActionDeserializer extends AbstractActionDeserializer {
26
27     @Override
28     public Action deserialize(final ByteBuf input) {
29         final ActionBuilder builder = new ActionBuilder();
30         input.skipBytes(2 * EncodeConstants.SIZE_OF_SHORT_IN_BYTES);
31         SetNwSrcCaseBuilder caseBuilder = new SetNwSrcCaseBuilder();
32         SetNwSrcActionBuilder actionBuilder = new SetNwSrcActionBuilder();
33         actionBuilder.setIpAddress(ByteBufUtils.readIetfIpv4Address(input));
34         caseBuilder.setSetNwSrcAction(actionBuilder.build());
35         builder.setActionChoice(caseBuilder.build());
36         return builder.build();
37     }
38
39     @Override
40     protected ActionChoice getType() {
41         return new SetNwSrcCaseBuilder().build();
42     }
43
44 }