1   
2   
3   
4   
5   
6   
7   
8   
9   
10  
11  
12  
13  
14  
15  
16  package org.apache.torque.util;
17  
18  import java.util.List;
19  
20  public class CloverETLTable {
21  
22  	String name;
23  	List<String> columns;
24  	List<String[]> rows;
25  	List<CloverETLColumn> etlColumns;
26  
27  	public String getName() {
28  		return name;
29  	}
30  
31  	public void setName(String name) {
32  		this.name = name;
33  	}
34  
35  	public List<String> getColumns() {
36  		return columns;
37  	}
38  
39  	public void setColumns(List<String> columns) {
40  		this.columns = columns;
41  	}
42  
43  	public List<String[]> getRows() {
44  		return rows;
45  	}
46  
47  	public void setRows(List<String[]> rows) {
48  		this.rows = rows;
49  	}
50  
51  	public List<CloverETLColumn> getEtlColumns() {
52  		return etlColumns;
53  	}
54  
55  	public void setEtlColumns(List<CloverETLColumn> etlColumns) {
56  		this.etlColumns = etlColumns;
57  	}
58  
59  }