@ConstructorProperties({"properties", "name", "process", "flowDescriptor"})
public ProcessFlow( Map<Object, Object> properties, String name, P process, Map<String, String> flowDescriptor )
{
super( HadoopUtil.getPlatformInfo(), properties, null, name, flowDescriptor );
this.process = process;
this.processWrapper = new ProcessWrapper( this.process );
setName( name );
setTapFromProcess();
}