Project

General

Profile

« Previous | Next » 

Revision 49534

added methods to drop the caches, changed project_tsv response, now providing all the organizations participating to a project

View differences:

ProjectTsv.java
22 22

  
23 23
	@Id
24 24
	@JsonIgnore
25
	private String id;
25
	private long rowid;
26 26
	private String code;
27 27
	private String acronym;
28 28
	private String title;
......
74 74
		return StringUtils.isNotBlank(s) ? "\"" + s.replaceAll("\\n|\\t|\\s+", " ").replace("\"","\"\"").trim() + "\"" : "";
75 75
	}
76 76

  
77
	public String getId() {
78
		return id;
77
	public long getRowid() {
78
		return rowid;
79 79
	}
80 80

  
81
	public void setId(final String id) {
82
		this.id = id;
81
	public void setRowid(final long rowid) {
82
		this.rowid = rowid;
83 83
	}
84 84

  
85 85
	public String getCode() {
......
217 217
	public void setEmail(final String email) {
218 218
		this.email = email;
219 219
	}
220

  
220 221
}

Also available in: Unified diff