Merge "BUG-4062: Flows,Groups,Meters not getting deleted during switch flap"
[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  * @author msunal
12  *
13  */
14 public class NiciraActionCodecs {
15
16     public static final RegMoveCodec REG_MOVE_CODEC = new RegMoveCodec();
17     public static final RegLoadCodec REG_LOAD_CODEC = new RegLoadCodec();
18     public static final OutputRegCodec OUTPUT_REG_CODEC = new OutputRegCodec();
19     public static final ResubmitCodec RESUBMIT_CODEC = new ResubmitCodec();
20     public static final MultipathCodec MULTIPATH_CODEC = new MultipathCodec();
21     public static final SetNspCodec SET_NSP_CODEC = new SetNspCodec();
22     public static final SetNsiCodec SET_NSI_CODEC = new SetNsiCodec();
23     public static final SetNshc1Codec SET_NSC1_CODEC = new SetNshc1Codec();
24     public static final SetNshc2Codec SET_NSC2_CODEC = new SetNshc2Codec();
25     public static final SetNshc3Codec SET_NSC3_CODEC = new SetNshc3Codec();
26     public static final SetNshc4Codec SET_NSC4_CODEC = new SetNshc4Codec();
27 }