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 ObjectconfigurationConfiguration, if no template is defined.StringmessageIDThe messageID that will be passed to the result message, to be able to relate incoming and outgoing messages.Collection<Property>propertiesA bunch of parameters, which configure nodes and job.List<Stream>streamsSource streams to be processed.URItemplateLocationLocation 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, theconfigurationmust 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
-
-