All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cisco.trex.stateless.model.L2Configuration Maven / Gradle / Ivy

There is a newer version: 1.69
Show newest version
package com.cisco.trex.stateless.model;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;

@JsonIgnoreProperties(ignoreUnknown = true)
public class L2Configuration {

  @JsonProperty("dst")
  private String dst;

  @JsonProperty("src")
  private String src;

  @JsonProperty("state")
  private String state;

  @JsonProperty("dst")
  public String getDst() {
    return dst;
  }

  @JsonProperty("dst")
  public void setDst(String dst) {
    this.dst = dst;
  }

  @JsonProperty("src")
  public String getSrc() {
    return src;
  }

  @JsonProperty("src")
  public void setSrc(String src) {
    this.src = src;
  }

  @JsonProperty("state")
  public String getState() {
    return state;
  }

  @JsonProperty("state")
  public void setState(String state) {
    this.state = state;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy