Open Kilda Java Documentation
FlowInstructions.java
Go to the documentation of this file.
1 package org.openkilda.domain.floodlight;
2 
3 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
4 import com.fasterxml.jackson.annotation.JsonInclude;
5 import com.fasterxml.jackson.annotation.JsonInclude.Include;
6 import com.fasterxml.jackson.annotation.JsonProperty;
7 
8 @JsonInclude(Include.NON_NULL)
9 @JsonIgnoreProperties(ignoreUnknown = true)
10 public class FlowInstructions {
11 
12  @JsonProperty(value = "instruction_apply_actions")
13  private InstructionApplyActions instructionApplyActions;
14  private String none;
15 
16  public FlowInstructions() {
17  }
18 
20  return instructionApplyActions;
21  }
22 
23  public void setInstructionApplyActions(InstructionApplyActions instructionApplyActions) {
24  this.instructionApplyActions = instructionApplyActions;
25  }
26 
27  public String getNone() {
28  return none;
29  }
30 
31  public void setNone(String none) {
32  this.none = none;
33  }
34 }
value
Definition: nodes.py:62
void setInstructionApplyActions(InstructionApplyActions instructionApplyActions)