com.ptc.core.components.forms
Enum FormProcessingStatus

java.lang.Object
  extended by java.lang.Enum<FormProcessingStatus>
      extended by com.ptc.core.components.forms.FormProcessingStatus
All Implemented Interfaces:
Serializable, Comparable<FormProcessingStatus>

public enum FormProcessingStatus
extends Enum<FormProcessingStatus>

Status returned by one form processor to a calling form processor or from a form processor to the WizardServlet. Determines whether processing should be aborted and disposition of form window.

SUCCESS - Indicates that the form was successfully processed. The form window will be closed unless the Apply button was used to submit the form.

FAILURE - Indicates that an error occurred processing the form and the operation could not be completed. The form window will be left open.

NON_FATAL_ERROR - Indicates that all or part of the operation could be completed but non-fatal error(s) occcured. The form window will be closed unless the Apply button was used to submit the form.

Supported API: true

Extendable: false


Enum Constant Summary
FAILURE
           
NON_FATAL_ERROR
           
SUCCESS
           
 
Method Summary
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

SUCCESS

public static final FormProcessingStatus SUCCESS

FAILURE

public static final FormProcessingStatus FAILURE

NON_FATAL_ERROR

public static final FormProcessingStatus NON_FATAL_ERROR