Project

General

Profile

« Previous | Next » 

Revision 48701

Upgraded incremental harvesting and other stuff

View differences:

RefreshSchemaJobNode.java
21 21

  
22 22
	private String interpretation;
23 23

  
24
    private String backendId;
25

  
24 26
	@Override
25 27
	protected String obtainServiceId(final Env env) {
26 28
		return getServiceLocator().getServiceId(IndexService.class);
......
39 41

  
40 42
		job.setAction("REFRESH_SCHEMA");
41 43
		job.getParameters().put("profileId", results.get(0));
44
        job.getParameters().put("backendId", backendId);
42 45

  
46

  
43 47
	}
44 48

  
45 49
	public String getFormat() {
......
66 70
	public void setInterpretation(final String interpretation) {
67 71
		this.interpretation = interpretation;
68 72
	}
73

  
74
    public String getBackendId() {
75
        return backendId;
76
    }
77

  
78
    public void setBackendId(String backendId) {
79
        this.backendId = backendId;
80
    }
69 81
}

Also available in: Unified diff