com.cisco.trex.stateful.api.lowlevel.ASTFGlobalInfoPerTemplate 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.stateful.api.lowlevel;
import com.google.gson.JsonObject;
import java.util.Arrays;
import java.util.HashSet;
import java.util.Set;
/** Java implementation for TRex python sdk ASTFGlobalInfoPerTemplate class */
public class ASTFGlobalInfoPerTemplate implements ASTFGlobalInfoBase {
private JsonObject tcp = new JsonObject();
private JsonObject ip = new JsonObject();
private static final Set tcpParamSet =
new HashSet<>(Arrays.asList("initwnd", "mss", "no_delay", "rxbufsize", "txbufsize"));
@Override
public ASTFGlobalInfoBase scheduler(SchedulerParam schedulerParam, int value) {
throw new IllegalStateException("unsupported method in AstfGlobalInfoPerTemplate class");
}
@Override
public ASTFGlobalInfoBase ipv6(Ipv6Param ipv6Param, int value) {
throw new IllegalStateException("unsupported method in AstfGlobalInfoPerTemplate class");
}
@Override
public ASTFGlobalInfoBase tcp(TcpParam tcpParam, int value) {
if (!tcpParamSet.contains(tcpParam.getType())) {
throw new IllegalStateException(
String.format(
"TcpParam: %s is not support in AstfGlobalInfoPerTemplate class",
tcpParam.getType()));
}
tcp.addProperty(tcpParam.getType(), value);
return this;
}
@Override
public ASTFGlobalInfoBase ip(IpParam ipParam, int value) {
ip.addProperty(ipParam.getType(), value);
return this;
}
@Override
public JsonObject toJson() {
JsonObject jsonObject = new JsonObject();
if (tcp.size() != 0) {
jsonObject.add("tcp", this.tcp);
}
if (ip.size() != 0) {
jsonObject.add("ip", this.ip);
}
return jsonObject;
}
}