package org.gcube.portlets.user.dataminermanagertester.shared.result; import java.io.Serializable; import java.util.LinkedHashMap; /** * * @author Giancarlo Panichi * * */ public class BatchTestResult implements Serializable { private static final long serialVersionUID = -8282297686097887134L; private LinkedHashMap testResultMap; public BatchTestResult() { super(); } public BatchTestResult(LinkedHashMap testResultMap) { super(); this.testResultMap = testResultMap; } public LinkedHashMap getTestResultMap() { return testResultMap; } public void setTestResultMap(LinkedHashMap testResultMap) { this.testResultMap = testResultMap; } @Override public String toString() { return "BatchTestResult [testResultMap=" + testResultMap + "]"; } }