All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cisco.trex.stateless.model.Response Maven / Gradle / Ivy

There is a newer version: 1.69
Show newest version
package com.cisco.trex.stateless.model;

import com.google.gson.JsonElement;

public class Response {
  private String id;
  private String jsonrpc;
  private JsonElement result;

  public Response(String id, String jsonrpc, JsonElement result) {
    this.id = id;
    this.jsonrpc = jsonrpc;
    this.result = result;
  }

  public String getId() {
    return id;
  }

  public String getJsonrpc() {
    return jsonrpc;
  }

  public JsonElement getResult() {
    return result;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy