/* * Copyright (c) 2013 Pantheon Technologies s.r.o. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.openflowjava.protocol.impl.deserialization.match; import static org.opendaylight.yangtools.yang.common.netty.ByteBufUtils.readUint16; import io.netty.buffer.ByteBuf; import org.opendaylight.openflowjava.protocol.api.extensibility.OFDeserializer; import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.PortNumber; import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev150225.MatchField; import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev150225.OpenflowBasicClass; import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev150225.OxmClassBase; import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev150225.TcpDst; import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev150225.match.entries.grouping.MatchEntry; import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev150225.match.entry.value.grouping.match.entry.value.TcpDstCaseBuilder; import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev150225.match.entry.value.grouping.match.entry.value.tcp.dst._case.TcpDstBuilder; /** * Translates OxmTcpDst messages. * * @author michal.polkorab */ public class OxmTcpDstDeserializer extends AbstractOxmMatchEntryDeserializer implements OFDeserializer { @Override public MatchEntry deserialize(ByteBuf input) { return processHeader(getOxmClass(), getOxmField(), input) .setMatchEntryValue(new TcpDstCaseBuilder() .setTcpDst(new TcpDstBuilder().setPort(new PortNumber(readUint16(input))).build()) .build()) .build(); } @Override protected Class getOxmField() { return TcpDst.class; } @Override protected Class getOxmClass() { return OpenflowBasicClass.class; } }