Exemple #1
0
 public StepConfig WithHadoopJarStep(HadoopJarStepConfig hadoopJarStep)
 {
     this.hadoopJarStepField = hadoopJarStep;
     return this;
 }
Exemple #2
0
 public StepConfig WithHadoopJarStep(HadoopJarStepConfig hadoopJarStep)
 {
     this.hadoopJarStep = hadoopJarStep;
     return(this);
 }
Exemple #3
0
 /// <summary>
 /// Instantiates StepConfig with the parameterized properties
 /// </summary>
 /// <param name="name">The name of the step.</param>
 /// <param name="hadoopJarStep">The JAR file used for the step.</param>
 public StepConfig(string name, HadoopJarStepConfig hadoopJarStep)
 {
     _name          = name;
     _hadoopJarStep = hadoopJarStep;
 }
Exemple #4
0
 /// <summary>
 /// Instantiates StepConfig with the parameterized properties
 /// </summary>
 /// <param name="name">The name of the job flow step.</param>
 /// <param name="hadoopJarStep">The JAR file used for the job flow step.</param>
 public StepConfig(string name, HadoopJarStepConfig hadoopJarStep)
 {
     _name = name;
     _hadoopJarStep = hadoopJarStep;
 }