cookercucumber_reporter.json_pojos.Result Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cooker-maven-plugin Show documentation
Show all versions of cooker-maven-plugin Show documentation
Derives smallest Feature File, Allows Data from Excel(xls and xlsx) and Also provides a clear and
concise reporting
package cookercucumber_reporter.json_pojos;
import com.google.gson.annotations.SerializedName;
/**
* @author Manjunath Prabhakar (Manjunath-PC)
* @created 19/09/2020
* @project cooker-cucumber-reporter
*
* Holds Result Object
*/
public class Result {
@SerializedName(value = "duration")
private long duration = 0;
@SerializedName(value = "status")
private String status = "";
@SerializedName(value = "error_message")
private String errorMessage = "";
public long getDuration() {
return duration;
}
public void setDuration(long duration) {
this.duration = duration;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public String getErrorMessage() {
return errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
}