| PerfResult.java |
/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package org.jboss.test.perf.interfaces;
import java.io.Serializable;
/** The data object returned by PerfTestSession
@author Scott.Stark@jboss.org
@version $Revision: 1.2.6.1 $
*/
public class PerfResult implements Serializable
{
static final long serialVersionUID = -7629955515338069300L;
public Exception error;
public String report;
}
| PerfResult.java |