Pavlin Radoslavov | 5363c2a | 2013-02-18 09:55:42 -0800 | [diff] [blame] | 1 | package net.floodlightcontroller.util; |
| 2 | |
| 3 | /** |
| 4 | * The class representing the Flow Entry set of actions. |
| 5 | * |
| 6 | * The Flow Entry set of actions need to be applied to each packet. |
| 7 | * |
| 8 | * NOTE: This is just an empty placeholder (for now). The implied action is |
| 9 | * forwarding on a single port. |
| 10 | */ |
| 11 | public class FlowEntryActions { |
| 12 | |
| 13 | /** |
| 14 | * Default constructor. |
| 15 | */ |
| 16 | public FlowEntryActions() { |
| 17 | } |
| 18 | |
| 19 | /** |
| 20 | * Convert the set of actions to a string. |
| 21 | * |
| 22 | * @return the set of actions as a string. |
| 23 | */ |
| 24 | @Override |
| 25 | public String toString() { |
| 26 | String ret = ""; |
| 27 | // TODO: Implement it! |
| 28 | return ret; |
| 29 | } |
| 30 | } |