com.cisco.trex.stateless.model.RxFeature 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;
public class RxFeature {
private Type type;
private Object value;
public RxFeature(Type type, Object value) {
this.type = type;
this.value = value;
}
public Type getType() {
return type;
}
public Object getValue() {
return value;
}
public enum Type {
Queue("queue");
private String type;
Type(String type) {
this.type = type;
}
}
}