bad5995f06aa54907646dbb4133de22fd62c89ea
[openflowjava.git] / openflow-protocol-impl / src / main / java / org / opendaylight / openflowjava / protocol / impl / serialization / match / OxmArpSpaSerializer.java
1 /*\r
2  * Copyright (c) 2013 Pantheon Technologies s.r.o. and others.  All rights reserved.\r
3  *\r
4  * This program and the accompanying materials are made available under the\r
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,\r
6  * and is available at http://www.eclipse.org/legal/epl-v10.html\r
7  */\r
8 package org.opendaylight.openflowjava.protocol.impl.serialization.match;\r
9 \r
10 import org.opendaylight.openflowjava.protocol.api.util.EncodeConstants;\r
11 import org.opendaylight.openflowjava.protocol.api.util.OxmMatchConstants;\r
12 \r
13 /**\r
14  * @author michal.polkorab\r
15  *\r
16  */\r
17 public class OxmArpSpaSerializer extends AbstractOxmIpv4AddressSerializer {\r
18 \r
19     @Override\r
20     protected int getOxmClassCode() {\r
21         return OxmMatchConstants.OPENFLOW_BASIC_CLASS;\r
22     }\r
23 \r
24     @Override\r
25     protected int getOxmFieldCode() {\r
26         return OxmMatchConstants.ARP_SPA;\r
27     }\r
28 \r
29     @Override\r
30     protected int getValueLength() {\r
31         return EncodeConstants.SIZE_OF_INT_IN_BYTES;\r
32     }\r
33 }\r