blob: 695b77173d23e972ce7c2e0cbde6f63bd1b77b1a [file] [log] [blame]
@Override
public OFFlowModify.Builder setActions(List<OFAction> actions) throws UnsupportedOperationException {
OFInstructionApplyActionsVer13.Builder builder = new OFInstructionApplyActionsVer13.Builder();
builder.setActions(actions);
this.instructions = Collections.singletonList((OFInstruction)builder.build());
this.instructionsSet = true;
return this;
}