blob: eb7799a3dea9ab09a5fb1aa659812dc40e1daa99 [file] [log] [blame]
@Override
public List<OFAction> getActions()throws UnsupportedOperationException {
for (OFInstruction inst : this.instructions) {
if (inst instanceof OFInstructionApplyActions) {
OFInstructionApplyActions iap = (OFInstructionApplyActions)inst;
return iap.getActions();
}
}
return Collections.emptyList();
}