hu.midori.kosmos.model
Class CcTestResult

java.lang.Object
  extended by hu.midori.kosmos.model.CcTestResult

public class CcTestResult
extends java.lang.Object

Represents the result of a CruiseControl unit test.

This should be a Java 5 enum, but enumerated types can't be serialized and sent through Hessian, so it's a plain old-style Java constant for now.

Version:
$Id$
Author:
Aron Gombas

Field Summary
static int ERROR
           
static int FAILED
           
static int SUCCEEDED
           
static int UNKNOWN
           
 
Constructor Summary
protected CcTestResult()
          This class should never be instantiated.
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

UNKNOWN

public static final int UNKNOWN
See Also:
Constant Field Values

SUCCEEDED

public static final int SUCCEEDED
See Also:
Constant Field Values

FAILED

public static final int FAILED
See Also:
Constant Field Values

ERROR

public static final int ERROR
See Also:
Constant Field Values
Constructor Detail

CcTestResult

protected CcTestResult()
This class should never be instantiated.