* Within this workflow we've decided to use as many parameters of those two as configured within the xml config,
* but if one is not available (i.e. null) we still try to invoke the migration service (and use the default config of the service)
*/
List<Parameter> parameterList = new ArrayList<Parameter>();
Parameter pCompressionType = this.getServiceCallConfigs(this.migrate1).
getPropertyAsParameter("compressionType");
if(pCompressionType!=null){
parameterList.add(pCompressionType);
}
Parameter pCompressionQuality = this.getServiceCallConfigs(this.migrate1).
getPropertyAsParameter("compressionQuality");
if(pCompressionQuality!=null){
parameterList.add(pCompressionQuality);
}