blob: eb7799a3dea9ab09a5fb1aa659812dc40e1daa99 [file] [log] [blame]
Yotam Harcholf25e8142013-09-09 14:30:13 -07001
2 @Override
3 public List<OFAction> getActions()throws UnsupportedOperationException {
Yotam Harcholf25e8142013-09-09 14:30:13 -07004 for (OFInstruction inst : this.instructions) {
5 if (inst instanceof OFInstructionApplyActions) {
6 OFInstructionApplyActions iap = (OFInstructionApplyActions)inst;
Yotam Harchola9305c22013-09-09 14:57:19 -07007 return iap.getActions();
Yotam Harcholf25e8142013-09-09 14:30:13 -07008 }
9 }
Yotam Harchola9305c22013-09-09 14:57:19 -070010 return Collections.emptyList();
Yotam Harcholf25e8142013-09-09 14:30:13 -070011 }