org.apache.geronimo.validator
Class ValidationResult

java.lang.Object
  extended byorg.apache.geronimo.validator.ValidationResult

public class ValidationResult
extends Object

Used to enumerate validation results.

Version:
$Revision: 1.3 $ $Date: 2004/03/10 09:58:44 $

Field Summary
static ValidationResult ABORTED
          Not only were there errors, they were so severe that we couldn't even finish running the validation tests.
static ValidationResult FAILED
          Indicates the presence of errors that will likely prevent the application module from being deployed and/or run successfully.
static ValidationResult PASSED
          Indicates that the validation process was completely successful.
static ValidationResult PASSED_WITH_WARNINGS
          Indicated that there are some issues the user should be aware of, but in general the application module can be deployed and run.
 
Method Summary
 String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

PASSED

public static final ValidationResult PASSED
Indicates that the validation process was completely successful. The application module can be deployed and run.


PASSED_WITH_WARNINGS

public static final ValidationResult PASSED_WITH_WARNINGS
Indicated that there are some issues the user should be aware of, but in general the application module can be deployed and run.


FAILED

public static final ValidationResult FAILED
Indicates the presence of errors that will likely prevent the application module from being deployed and/or run successfully.


ABORTED

public static final ValidationResult ABORTED
Not only were there errors, they were so severe that we couldn't even finish running the validation tests.

Method Detail

toString

public String toString()


Copyright © 2003-2005 Apache Software Foundation. All Rights Reserved.