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

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

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

public class TRexClientResult {
  private String error;

  private T resultObj;

  public String getError() {
    return error;
  }

  public void setError(String error) {
    this.error = error;
  }

  public T get() {
    return resultObj;
  }

  public void set(T resultObj) {
    this.resultObj = resultObj;
  }

  public boolean isFailed() {
    return error != null;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy