Open Kilda Java Documentation
FlowActions.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 
7 @JsonInclude(Include.NON_NULL)
8 @JsonIgnoreProperties(ignoreUnknown = true)
9 public class FlowActions {
10  private String actions;
11 
12  public FlowActions(String actions) {
13  this.actions = actions;
14  }
15 
16  public String getActions() {
17  return actions;
18  }
19 
20  public void setActions(String actions) {
21  this.actions = actions;
22  }
23 }