com.fasteasytrade.jrandtest.tests.Result Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ports-jrandtest Show documentation
Show all versions of ports-jrandtest Show documentation
Fork from https://github.com/cryptopony/jrandtest
The newest version!
package com.fasteasytrade.jrandtest.tests;
import java.util.Collections;
import java.util.Map;
public class Result {
final public static Result UNKNOWN = new Result(ResultStatus.UNKNOWN, Collections.emptyMap());
final private ResultStatus status;
final private Map details;
public Result(ResultStatus status, Map details) {
this.status = status;
this.details = details;
}
public ResultStatus status() {
return status;
}
public Map details() {
return details;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy