Porting over the Nicira extension actions MULTIPATH and RESUBMIT from
[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 }