com.cisco.trex.stateless.model.port.PortVlan Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trex-java-sdk Show documentation
Show all versions of trex-java-sdk Show documentation
Java client SDK provides an implementation for TRex RPC APIs
package com.cisco.trex.stateless.model.port;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
@JsonIgnoreProperties(ignoreUnknown = true)
public class PortVlan {
@JsonProperty("tags")
public List tags;
@JsonProperty("tags")
public List getTags() {
return tags;
}
@JsonProperty("tags")
public void setTags(List tags) {
this.tags = tags;
}
}