Uses of Class
uws.job.ErrorType

Packages that use ErrorType
uws   
uws.job   
 

Uses of ErrorType in uws
 

Fields in uws declared as ErrorType
protected  ErrorType UWSException.errorType
          The UWS error type (by default FATAL).
 

Methods in uws that return ErrorType
 ErrorType UWSException.getUWSErrorType()
           
 

Methods in uws with parameters of type ErrorType
static boolean UWSToolBox.publishErrorSummary(AbstractJob j, java.lang.Exception ex, ErrorType type, java.lang.String errorFileUri, java.lang.String errorsDirectory, java.lang.String errorFileName)
          Sets an error summary corresponding to the given Exception with the given error type.
static boolean UWSToolBox.publishErrorSummary(AbstractJob j, java.lang.Exception ex, ErrorType type, java.net.URL errorFileUrl, java.lang.String errorsDirectory, java.lang.String errorFileName)
          Deprecated. Replaced by UWSToolBox.publishErrorSummary(AbstractJob, Exception, ErrorType, String, String, String)
static boolean UWSToolBox.publishErrorSummary(AbstractJob j, java.lang.String msg, ErrorType type)
          Sets an error summary to the given job with the given message and the given error type and sets the phase member to ERROR.
 

Constructors in uws with parameters of type ErrorType
UWSException(int httpError, java.lang.String msg, ErrorType type)
           
UWSException(int httpError, java.lang.Throwable t, ErrorType type)
           
UWSException(int httpError, java.lang.Throwable t, java.lang.String msg, ErrorType type)
           
UWSException(java.lang.String msg, ErrorType type)
           
UWSException(java.lang.Throwable t, ErrorType type)
           
 

Uses of ErrorType in uws.job
 

Fields in uws.job declared as ErrorType
protected  ErrorType ErrorSummary.type
          [Required] The type of the error.
 

Methods in uws.job that return ErrorType
 ErrorType ErrorSummary.getType()
          Gets the type of the occurred error (FATAL by default).
static ErrorType ErrorType.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ErrorType[] ErrorType.values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 

Constructors in uws.job with parameters of type ErrorType
ErrorSummary(java.lang.Exception ex, ErrorType errorType, java.lang.String detailedMsgURI)
          Builds an error summary from an Exception.
ErrorSummary(java.lang.Exception ex, ErrorType errorType, java.net.URL detailedMsg)
          Deprecated. Replaced by ErrorSummary.ErrorSummary(Exception, ErrorType, String)
ErrorSummary(java.lang.String msg, ErrorType errorType)
          Builds an error summary with the given short description.
ErrorSummary(java.lang.String msg, ErrorType errorType, java.lang.String detailedMsgURI)
          Builds an error summary with the given short description and with the URL to access to a detailed description.
ErrorSummary(java.lang.String msg, ErrorType errorType, java.net.URL detailedMsg)
          Deprecated. Replaced by ErrorSummary.ErrorSummary(String, ErrorType, String)