0e166ba8a82d9adcda93d17ce38ab0ff03fd4956
[openflowjava.git] / openflow-extension-nicira / src / main / java / org / opendaylight / openflowjava / nx / NiciraMatchCodecs.java
1 /**
2  * Copyright (c) 2014 Cisco Systems, Inc. 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.nx;
9
10 import org.opendaylight.openflowjava.nx.codec.match.ArpOpCodec;
11 import org.opendaylight.openflowjava.nx.codec.match.ArpShaCodec;
12 import org.opendaylight.openflowjava.nx.codec.match.ArpSpaCodec;
13 import org.opendaylight.openflowjava.nx.codec.match.ArpThaCodec;
14 import org.opendaylight.openflowjava.nx.codec.match.ArpTpaCodec;
15 import org.opendaylight.openflowjava.nx.codec.match.EthDstCodec;
16 import org.opendaylight.openflowjava.nx.codec.match.EthSrcCodec;
17 import org.opendaylight.openflowjava.nx.codec.match.Reg0Codec;
18 import org.opendaylight.openflowjava.nx.codec.match.Reg1Codec;
19 import org.opendaylight.openflowjava.nx.codec.match.Reg2Codec;
20 import org.opendaylight.openflowjava.nx.codec.match.Reg3Codec;
21 import org.opendaylight.openflowjava.nx.codec.match.Reg4Codec;
22 import org.opendaylight.openflowjava.nx.codec.match.Reg5Codec;
23 import org.opendaylight.openflowjava.nx.codec.match.Reg6Codec;
24 import org.opendaylight.openflowjava.nx.codec.match.Reg7Codec;
25 import org.opendaylight.openflowjava.nx.codec.match.TunIdCodec;
26 import org.opendaylight.openflowjava.nx.codec.match.TunIpv4DstCodec;
27 import org.opendaylight.openflowjava.nx.codec.match.TunIpv4SrcCodec;
28
29 /**
30  * @author msunal
31  *
32  */
33 public class NiciraMatchCodecs {
34
35     public static final Reg0Codec REG0_CODEC = new Reg0Codec();
36     public static final Reg1Codec REG1_CODEC = new Reg1Codec();
37     public static final Reg2Codec REG2_CODEC = new Reg2Codec();
38     public static final Reg3Codec REG3_CODEC = new Reg3Codec();
39     public static final Reg4Codec REG4_CODEC = new Reg4Codec();
40     public static final Reg5Codec REG5_CODEC = new Reg5Codec();
41     public static final Reg6Codec REG6_CODEC = new Reg6Codec();
42     public static final Reg7Codec REG7_CODEC = new Reg7Codec();
43     public static final TunIdCodec TUN_ID_CODEC = new TunIdCodec();
44     public static final ArpOpCodec ARP_OP_CODEC = new ArpOpCodec();
45     public static final ArpShaCodec ARP_SHA_CODEC = new ArpShaCodec();
46     public static final ArpSpaCodec ARP_SPA_CODEC = new ArpSpaCodec();
47     public static final ArpThaCodec ARP_THA_CODEC = new ArpThaCodec();
48     public static final ArpTpaCodec ARP_TPA_CODEC = new ArpTpaCodec();
49     public static final EthDstCodec ETH_DST_CODEC = new EthDstCodec();
50     public static final EthSrcCodec ETH_SRC_CODEC = new EthSrcCodec();
51     public static final TunIpv4DstCodec TUN_IPV4_DST_CODEC = new TunIpv4DstCodec();
52     public static final TunIpv4SrcCodec TUN_IPV4_SRC_CODEC = new TunIpv4SrcCodec();
53
54 }