Add Action deserializers
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / protocol / deserialization / action / CopyTtlOutActionDeserializer.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 org.opendaylight.openflowjava.protocol.impl.util.ActionConstants;
11 import org.opendaylight.yang.gen.v1.urn.opendaylight.action.types.rev131112.action.action.CopyTtlOutCaseBuilder;
12 import org.opendaylight.yang.gen.v1.urn.opendaylight.action.types.rev131112.action.action.copy.ttl.out._case.CopyTtlOutBuilder;
13 import org.opendaylight.yang.gen.v1.urn.opendaylight.action.types.rev131112.action.Action;
14
15 import io.netty.buffer.ByteBuf;
16
17 public class CopyTtlOutActionDeserializer extends AbstractActionDeserializer {
18
19     @Override
20     public Action deserialize(ByteBuf message) {
21         processHeader(message);
22         message.skipBytes(ActionConstants.PADDING_IN_ACTION_HEADER);
23
24         return new CopyTtlOutCaseBuilder()
25             .setCopyTtlOut(new CopyTtlOutBuilder().build())
26             .build();
27     }
28
29
30     @Override
31     public Action deserializeHeader(ByteBuf message) {
32         processHeader(message);
33         return new CopyTtlOutCaseBuilder().build();
34     }
35
36 }