Migrate uint/ByteBuf interactions
[openflowplugin.git] / extension / openflowjava-extension-nicira / src / main / java / org / opendaylight / openflowjava / nx / codec / action / NiciraActionCodecs.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.codec.action;
9
10 /**
11  * Defines the Nicira action codecs.
12  *
13  * @author msunal
14  */
15 public interface NiciraActionCodecs {
16     RegMoveCodec REG_MOVE_CODEC = new RegMoveCodec();
17     RegLoadCodec REG_LOAD_CODEC = new RegLoadCodec();
18     RegLoad2Codec REG_LOAD2_CODEC = new RegLoad2Codec();
19     OutputRegCodec OUTPUT_REG_CODEC = new OutputRegCodec();
20     OutputReg2Codec OUTPUT_REG2_CODEC = new OutputReg2Codec();
21     ResubmitCodec RESUBMIT_CODEC = new ResubmitCodec();
22     MultipathCodec MULTIPATH_CODEC = new MultipathCodec();
23     ConntrackCodec CONNTRACK_CODEC = new ConntrackCodec();
24     CtClearCodec CT_CLEAR_CODEC = new CtClearCodec();
25     LearnCodec LEARN_CODEC = new LearnCodec();
26     FinTimeoutCodec FIN_TIMEOUT_CODEC = new FinTimeoutCodec();
27     EncapCodec ENCAP_CODEC = new EncapCodec();
28     DecapCodec DECAP_CODEC = new DecapCodec();
29     DecNshTtlCodec DEC_NSH_TTL_CODEC = new DecNshTtlCodec();
30 }