blob: c128a68d2277cf81803634691942759ba375b99e [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();
}