Created experimenter subtype for vendor's actions
[openflowjava.git] / openflow-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 ActionDeserializer ACTION_DESERIALIZER = new ActionDeserializer();
19 }