Merge "Add Action serializers"
[openflowplugin.git] / openflowplugin-impl / src / main / java / org / opendaylight / openflowplugin / impl / protocol / serialization / actions / SetNwTosActionSerializer.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
9 package org.opendaylight.openflowplugin.impl.protocol.serialization.actions;
10
11 import org.opendaylight.openflowplugin.openflow.md.util.ActionUtil;
12 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.Dscp;
13 import org.opendaylight.yang.gen.v1.urn.opendaylight.action.types.rev131112.action.Action;
14 import org.opendaylight.yang.gen.v1.urn.opendaylight.action.types.rev131112.action.action.SetFieldCase;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.action.types.rev131112.action.action.SetFieldCaseBuilder;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.action.types.rev131112.action.action.SetNwTosActionCase;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.action.types.rev131112.action.action.set.field._case.SetFieldBuilder;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.model.match.types.rev131026.match.IpMatchBuilder;
19
20 public class SetNwTosActionSerializer extends AbstractSetFieldActionSerializer {
21
22     @Override
23     protected SetFieldCase buildAction(Action input) {
24         return new SetFieldCaseBuilder()
25                 .setSetField(new SetFieldBuilder()
26                         .setIpMatch(new IpMatchBuilder()
27                                 .setIpDscp(new Dscp(
28                                         ActionUtil.tosToDscp(SetNwTosActionCase.class.cast(input)
29                                                 .getSetNwTosAction().getTos().shortValue())))
30                                 .build())
31                         .build())
32                 .build();
33     }
34
35 }