Uses of Class
uws.job.Result

Packages that use Result
uws.job   
uws.job.serializer   
 

Uses of Result in uws.job
 

Fields in uws.job with type parameters of type Result
protected  java.util.List<Result> AbstractJob.results
          This is a list of all results of this job.
 

Methods in uws.job that return types with arguments of type Result
 java.util.Iterator<Result> AbstractJob.getResults()
          Gets the results list of this job.
 

Methods in uws.job with parameters of type Result
 boolean AbstractJob.addResult(Result res)
          Adds the given result in the results list of this job.
 

Constructor parameters in uws.job with type arguments of type Result
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 Result in uws.job.serializer
 

Methods in uws.job.serializer with parameters of type Result
 java.lang.String XMLSerializer.getResult(Result result, boolean root)
           
abstract  java.lang.String UWSSerializer.getResult(Result result, boolean root)
          Serializes the given result.
 java.lang.String JSONSerializer.getResult(Result result, boolean root)