Project

General

Profile

« Previous | Next » 

Revision 46995

reverted to r46768

View differences:

GenericRow.java
3 3
import java.util.Map;
4 4

  
5 5
public class GenericRow {
6
	private String datasourceId;
7 6
	private String table;
8 7
	private Map<String, Object> fields;
9 8
	private boolean toDelete = false;
10

  
11
	public GenericRow(final String datasourceId, String table, Map<String, Object> fields, boolean toDelete) {
12
		this.datasourceId = datasourceId;
9
	
10
	
11
	public GenericRow(String table, Map<String, Object> fields, boolean toDelete) {
12
		super();
13 13
		this.table = table;
14 14
		this.fields = fields;
15 15
		this.toDelete = toDelete;
16 16
	}
17

  
18
	public String getDatasourceId() {
19
		return datasourceId;
20
	}
21

  
22
	public void setDatasourceId(final String datasourceId) {
23
		this.datasourceId = datasourceId;
24
	}
25

  
17
	
26 18
	public String getTable() {
27 19
		return table;
28 20
	}

Also available in: Unified diff