net.simplace.pipe.processors.HashValueFromFileProcessor

This processor computes the MD5 hash value of a given file and puts it into the pipeline.

Parameters:

filename
A complete or relative path to the file to be hashed. This parameter is mandatory!
resultParamKey
Key of the parameter that is put into the pipeline. This parameter is optional. The default is "hashValue".



public class HashValueFromFileProcessor extends
net.simplace.pipe.control.FWProcessor {
// Public Constructors
public HashValueFromFileProcessor();


// Protected Instance Methods
protected boolean process() throws PipeLineException; // Defines
net.simplace.pipe.control.FWProcessor


Runs the processor
protected boolean checkInParameterMap(); // Defines
net.simplace.pipe.control.FWProcessor


Ensures that all required parameters contain a value. If the value actually makes sense is checked when the processor is actually executed.
protected String getHexRepresentation(byte[] aDigestValue);

Returns the hex representation (as String) of the given byte array


}



Hierarchy: java.lang.Object - net.simplace.pipe.control.FWProcessor - HashValueFromFileProcessor