Package com.levigo.jadice.server.ws
Class JobConfiguration
- java.lang.Object
-
- com.levigo.jadice.server.ws.JobConfiguration
-
public class JobConfiguration extends Object
-
-
Field Summary
Fields Modifier and Type Field Description Object
configuration
Configuration, if no template is defined.String
messageID
The messageID that will be passed to the result message, to be able to relate incoming and outgoing messages.Collection<Property>
properties
A bunch of parameters, which configure nodes and job.List<Stream>
streams
Source streams to be processed.URI
templateLocation
Location for template in URL format.
-
Constructor Summary
Constructors Constructor Description JobConfiguration()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,String>
getProperties()
This method walk through all properties and map each to key/value pairs to a map.
-
-
-
Field Detail
-
templateLocation
public URI templateLocation
Location for template in URL format. If no template is given, theconfiguration
must be specified.
-
messageID
public String messageID
The messageID that will be passed to the result message, to be able to relate incoming and outgoing messages.
-
properties
public Collection<Property> properties
A bunch of parameters, which configure nodes and job.
-
configuration
public Object configuration
Configuration, if no template is defined. Content must be an XML tree as defined in jobtemplate.xsd Object will be a org.w3c.dom.Element later
-
-