com.cisco.trex.stateful.api.lowlevel.ASTFCmd 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;
/** Java implementation for TRex python sdk ASTFCmd class, the abstract Astf Cmd class, */
public abstract class ASTFCmd {
protected JsonObject fields;
protected Boolean stream = null;
protected Boolean buffer = null;
/** construct */
public ASTFCmd() {
fields = new JsonObject();
}
/**
* get AstfCmd name
*
* @return Astf cmd name
*/
public abstract String getName();
/**
* isStream
*
* @return true if it's stream
*/
public Boolean isStream() {
return stream;
}
/**
* to json format
*
* @return JsonObject
*/
public JsonObject toJson() {
return fields;
}
/**
* isBuffer
*
* @return true if it's buffer
*/
public Boolean isBuffer() {
return buffer;
}
}