Example of openflowjava extension for nx_action_resubmit 08/8808/5
authorMichal Polkorab <michal.polkorab@pantheon.sk>
Tue, 8 Jul 2014 16:21:11 +0000 (18:21 +0200)
committerMichal Polkorab <michal.polkorab@pantheon.sk>
Mon, 21 Jul 2014 09:41:53 +0000 (11:41 +0200)
commit600a545bbfa20e1eed1ce76c28ad6f4048cb6673
tree878555af2e0c004ddc30dae7629b20dd92d3dd71
parent05bc9fb5cb06c747be728f8d695d2723db911514
Example of openflowjava extension for nx_action_resubmit

 - configuration file is located in src/main/resources - use this file to load / register this bundle
 - configuration file is exemplary - it registers the NX_ACTION_RESUBMIT into ofjava 6633 and 6653 instances
 - change contains 2 yang files:
   - nx-resubmit-action.yang - shows how to augment existing structures
   - openflow-nx-resubmit-action.yang - shows how to configure custom bundle
 - unit tests test if the structure is (de)serialized correctly

Change-Id: I6ed7226dba83f36deb100de88e5408ae32c060b2
Signed-off-by: Michal Polkorab <michal.polkorab@pantheon.sk>
13 files changed:
openflow-nx-resubmit-action/pom.xml [new file with mode: 0644]
openflow-nx-resubmit-action/src/main/java/org/opendaylight/openflowjava/protocol/nx/NxResubmitActionRegistrator.java [new file with mode: 0644]
openflow-nx-resubmit-action/src/main/java/org/opendaylight/openflowjava/protocol/nx/deserialization/NxActionResubmitDeserializer.java [new file with mode: 0644]
openflow-nx-resubmit-action/src/main/java/org/opendaylight/openflowjava/protocol/nx/serialization/NxActionResubmitSerializer.java [new file with mode: 0644]
openflow-nx-resubmit-action/src/main/java/org/opendaylight/yang/gen/v1/urn/opendaylight/params/xml/ns/yang/openflow/nx/resubmit/action/rev140709/NxResubmitActionRegistratorModule.java [new file with mode: 0644]
openflow-nx-resubmit-action/src/main/java/org/opendaylight/yang/gen/v1/urn/opendaylight/params/xml/ns/yang/openflow/nx/resubmit/action/rev140709/NxResubmitActionRegistratorModuleFactory.java [new file with mode: 0644]
openflow-nx-resubmit-action/src/main/resources/43-openflow-nx-resubmit-config.xml [new file with mode: 0644]
openflow-nx-resubmit-action/src/main/resources/log4j.xml [new file with mode: 0644]
openflow-nx-resubmit-action/src/main/yang/nx-resubmit-action.yang [new file with mode: 0644]
openflow-nx-resubmit-action/src/main/yang/openflow-nx-resubmit-action.yang [new file with mode: 0644]
openflow-nx-resubmit-action/src/test/java/org/opendaylight/openflowjava/protocol/nx/deserialization/NxActionResubmitDeserializerTest.java [new file with mode: 0644]
openflow-nx-resubmit-action/src/test/java/org/opendaylight/openflowjava/protocol/nx/serialization/NxActionResubmitSerializerTest.java [new file with mode: 0644]
pom.xml