Add odlparent relativepath relative to autorelease
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / deserialization / match / AbstractOxmPortNumberDeserializer.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 package org.opendaylight.openflowjava.protocol.impl.deserialization.match;
9
10 import io.netty.buffer.ByteBuf;
11
12 import org.opendaylight.openflowjava.protocol.api.extensibility.OFDeserializer;
13 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.augments.rev131002.PortNumberMatchEntry;
14 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.augments.rev131002.PortNumberMatchEntryBuilder;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.common.types.rev130731.PortNumber;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev130731.oxm.fields.grouping.MatchEntries;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.openflow.oxm.rev130731.oxm.fields.grouping.MatchEntriesBuilder;
18
19 /**
20  * @author michal.polkorab
21  *
22  */
23 public abstract class AbstractOxmPortNumberDeserializer extends AbstractOxmMatchEntryDeserializer
24         implements OFDeserializer<MatchEntries> {
25
26     @Override
27     public MatchEntries deserialize(ByteBuf input) {
28         MatchEntriesBuilder builder = processHeader(getOxmClass(), getOxmField(), input);
29         PortNumberMatchEntryBuilder port = new PortNumberMatchEntryBuilder();
30         port.setPortNumber(new PortNumber(input.readUnsignedInt()));
31         builder.addAugmentation(PortNumberMatchEntry.class, port.build());
32         return builder.build();
33     }
34 }