Uses of Class
uws.job.ErrorSummary

Packages that use ErrorSummary
uws.job   
uws.job.serializer   
 

Uses of ErrorSummary in uws.job
 

Fields in uws.job declared as ErrorSummary
protected  ErrorSummary AbstractJob.errorSummary
          This error summary gives a human-readable error message for the underlying job.
 

Methods in uws.job that return ErrorSummary
 ErrorSummary AbstractJob.getErrorSummary()
          Gets the error that occurs during the execution of this job.
 

Methods in uws.job with parameters of type ErrorSummary
 void AbstractJob.error(ErrorSummary error)
          Stops immediately the job, sets its error summary, sets its phase to ExecutionPhase.ERROR and sets its end time.
 void AbstractJob.setErrorSummary(ErrorSummary errorSummary)
          Sets the error that occurs during the execution of this job.
 

Constructors in uws.job with parameters of type ErrorSummary
AbstractJob(java.lang.String jobId, java.lang.String jobName, java.lang.String ownerId, ExecutionPhase phase, java.util.Date startTime, java.util.Date endTime, long maxDuration, java.util.Date destructTime, java.util.List<Result> results, ErrorSummary errors, java.util.Map<java.lang.String,java.lang.String> additionalParams)
          MANUAL CONSTRUCTOR - DISCOURAGED Constructs a Job with all its parameters.
 

Uses of ErrorSummary in uws.job.serializer
 

Methods in uws.job.serializer with parameters of type ErrorSummary
 java.lang.String XMLSerializer.getErrorSummary(ErrorSummary error, boolean root)
           
abstract  java.lang.String UWSSerializer.getErrorSummary(ErrorSummary error, boolean root)
          Serializes the given error summary.
 java.lang.String JSONSerializer.getErrorSummary(ErrorSummary error, boolean root)