Created experimenter subtype for vendor's actions
[openflowjava.git] / openflow-extension-nicira / src / main / java / org / opendaylight / openflowjava / nx / codec / action / NiciraActionCodecs.java
diff --git a/openflow-extension-nicira/src/main/java/org/opendaylight/openflowjava/nx/codec/action/NiciraActionCodecs.java b/openflow-extension-nicira/src/main/java/org/opendaylight/openflowjava/nx/codec/action/NiciraActionCodecs.java
new file mode 100644 (file)
index 0000000..877b677
--- /dev/null
@@ -0,0 +1,19 @@
+/**
+ * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
+ * 
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
+package org.opendaylight.openflowjava.nx.codec.action;
+
+/**
+ * @author msunal
+ *
+ */
+public class NiciraActionCodecs {
+
+    public static final RegMoveCodec REG_MOVE_CODEC = new RegMoveCodec();
+    public static final RegLoadCodec REG_LOAD_CODEC = new RegLoadCodec();
+    public static final ActionDeserializer ACTION_DESERIALIZER = new ActionDeserializer();
+}