com.cisco.trex.stateless.model.port.IsActiveAttribute 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;
@JsonIgnoreProperties(ignoreUnknown = true)
public class IsActiveAttribute {
@JsonProperty("is_active")
private boolean isActive;
@JsonProperty("is_active")
public boolean getIsActive() {
return isActive;
}
@JsonProperty("is_active")
public void setIsActive(boolean isActive) {
this.isActive = isActive;
}
}