Merge remote-tracking branch 'liblldp/master'
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / protocol / deserialization / action / GroupActionDeserializer.java
1 /*
2  * Copyright (c) 2016 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 package org.opendaylight.openflowplugin.impl.protocol.deserialization.action;
9
10 import io.netty.buffer.ByteBuf;
11 import org.opendaylight.yang.gen.v1.urn.opendaylight.action.types.rev131112.action.Action;
12 import org.opendaylight.yang.gen.v1.urn.opendaylight.action.types.rev131112.action.action.GroupActionCaseBuilder;
13 import org.opendaylight.yang.gen.v1.urn.opendaylight.action.types.rev131112.action.action.group.action._case.GroupActionBuilder;
14
15 public class GroupActionDeserializer extends AbstractActionDeserializer {
16
17     @Override
18     public Action deserialize(ByteBuf message) {
19         processHeader(message);
20
21         return new GroupActionCaseBuilder()
22                 .setGroupAction(new GroupActionBuilder()
23                         .setGroupId(message.readUnsignedInt())
24                         .build())
25                 .build();
26     }
27
28     @Override
29     public Action deserializeHeader(ByteBuf message) {
30         processHeader(message);
31         return new GroupActionCaseBuilder().build();
32     }
33
34 }