Subversion Repositories SmartDukaan

Rev

Rev 1367 | Rev 4585 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1367 Rev 3420
Line 10... Line 10...
10
	
10
	
11
	private String warehouseId;
11
	private String warehouseId;
12
	private String lastTimestamp;
12
	private String lastTimestamp;
13
	private String currentTimestamp;
13
	private String currentTimestamp;
14
	private String totalUpdates;
14
	private String totalUpdates;
-
 
15
	private String error;
15
	private List<Update> updates = new ArrayList<Update>();
16
	private List<Update> updates = new ArrayList<Update>();
16
	
17
	
17
	public void add(Update update){
18
	public void add(Update update){
18
		updates.add(update);
19
		updates.add(update);
19
	}
20
	}
Line 55... Line 56...
55
	}
56
	}
56
 
57
 
57
	public String getTotalUpdates() {
58
	public String getTotalUpdates() {
58
		return totalUpdates;
59
		return totalUpdates;
59
	}
60
	}
-
 
61
 
-
 
62
    public void setError(String error) {
-
 
63
        this.error = error;
-
 
64
    }
-
 
65
 
-
 
66
    public String getError() {
-
 
67
        return error;
-
 
68
    }
60
}
69
}