Package com.levigo.jadice.server.ws
Class JobResult
- java.lang.Object
-
- com.levigo.jadice.server.ws.JobResult
-
public class JobResult extends Object
This class represents the response of a SOAP message, when a job is done.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
JobResult.Log
static class
JobResult.ResultStatus
-
Field Summary
Fields Modifier and Type Field Description String
jobID
The ID of the server job that was associated with the webservice jobCollection<JobResult.Log>
logs
String
messageID
The messageID that will be passed to the result message, to be able to relate incoming and outgoing messages.JobResult.ResultStatus
resultStatus
Collection<Stream>
streams
Processed streams.
-
Constructor Summary
Constructors Constructor Description JobResult()
JobResult(String messageID, Collection<JobResult.Log> logs, Collection<Stream> streams)
-
-
-
Field Detail
-
messageID
public String messageID
The messageID that will be passed to the result message, to be able to relate incoming and outgoing messages.
-
jobID
public String jobID
The ID of the server job that was associated with the webservice job- Since:
- jadice server 5.4.0.0
- See Also:
Job.getUUID()
-
logs
public Collection<JobResult.Log> logs
-
streams
public Collection<Stream> streams
Processed streams. Contains the results of a request.
-
resultStatus
public JobResult.ResultStatus resultStatus
-
-
Constructor Detail
-
JobResult
public JobResult()
-
JobResult
public JobResult(String messageID, Collection<JobResult.Log> logs, Collection<Stream> streams)
-
-