View Javadoc

1   // BSD License (http://www.galagosearch.org/license)
2   package org.galagosearch.tupleflow.execution;
3   
4   /***
5    * Represents an output step in a TupleFlow stage.
6    * 
7    * @author trevor
8    */
9   public class OutputStep extends Step {
10      String id;
11  
12      public OutputStep(String id) {
13          this.id = id;
14      }
15  
16      public OutputStep(FileLocation location, String id) {
17          this.id = id;
18          this.location = location;
19      }
20  
21      public String getId() {
22          return id;
23      }
24  }