com.cisco.trex.stateless.model.vm.TrimPktSize 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.vm;
public class TrimPktSize extends VMInstruction {
private String type;
private String name;
public TrimPktSize(String name) {
super();
this.type = "trim_pkt_size";
this.name = name;
}
public String getType() {
return type;
}
public String getName() {
return name;
}
}