d71b5d68320e1b7411d8a45cdd276731c2ff5ccb
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / deserialization / action / OF13SetQueueActionDeserializer.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.yang.gen.v1.urn.opendaylight.openflow.augments.rev150225.QueueIdAction;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.augments.rev150225.QueueIdActionBuilder;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev130731.SetQueue;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev130731.actions.grouping.Action;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.action.rev130731.actions.grouping.ActionBuilder;
19 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev130731.ActionBase;
20
21 /**
22  * @author michal.polkorab
23  *
24  */
25 public class OF13SetQueueActionDeserializer extends AbstractActionDeserializer {
26
27     @Override
28     public Action deserialize(ByteBuf input) {
29         ActionBuilder builder = new ActionBuilder();
30         builder.setType(getType());
31         input.skipBytes(2 * EncodeConstants.SIZE_OF_SHORT_IN_BYTES);
32         QueueIdActionBuilder queueId = new QueueIdActionBuilder();
33         queueId.setQueueId(input.readUnsignedInt());
34         builder.addAugmentation(QueueIdAction.class, queueId.build());
35         return builder.build();
36     }
37
38     @Override
39     protected Class<? extends ActionBase> getType() {
40         return SetQueue.class;
41     }
42
43 }