blob: b2dafe573ecafe9332e30d198b89122190b8e8bd [file] [log] [blame]
Yotam Harcholf25e8142013-09-09 14:30:13 -07001
2 @Override
3 public OFFlowDeleteStrict.Builder setActions(List<OFAction> actions) throws UnsupportedOperationException {
4 OFInstructionApplyActionsVer13.Builder builder = new OFInstructionApplyActionsVer13.Builder();
5 builder.setActions(actions);
6 this.instructions = Collections.singletonList((OFInstruction)builder.build());
7 this.instructionsSet = true;
8 return this;
9 }