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
19
public
InstructionApplyActions
getInstructionApplyActions
() {
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
}
org.openkilda.domain.floodlight.FlowInstructions.getNone
String getNone()
Definition:
FlowInstructions.java:27
org.openkilda.domain.floodlight.InstructionApplyActions
Definition:
InstructionApplyActions.java:9
org.openkilda.domain.floodlight.FlowInstructions
Definition:
FlowInstructions.java:10
nodes.value
value
Definition:
nodes.py:62
org.openkilda.domain.floodlight.FlowInstructions.getInstructionApplyActions
InstructionApplyActions getInstructionApplyActions()
Definition:
FlowInstructions.java:19
org.openkilda.domain.floodlight.FlowInstructions.FlowInstructions
FlowInstructions()
Definition:
FlowInstructions.java:16
org.openkilda.domain.floodlight.FlowInstructions.setInstructionApplyActions
void setInstructionApplyActions(InstructionApplyActions instructionApplyActions)
Definition:
FlowInstructions.java:23
org.openkilda.domain.floodlight.FlowInstructions.setNone
void setNone(String none)
Definition:
FlowInstructions.java:31
open-kilda-develop
services
src
atdd
src
main
java
org
openkilda
domain
floodlight
FlowInstructions.java
Generated by
1.8.14