Project

General

Profile

« Previous | Next » 

Revision 62940

Added by Michele Artini 11 months ago

added new fields in search response

View differences:

RepoInterfaceEntry.java
9 9

  
10 10
	private String label;
11 11
	private boolean removable = false;
12
	private String collDate = "";
13
	private int collTotal = 0;
14 12
	private String collMdId = "";
15 13
	private String aggrMdId = "";
16 14
	private String downloadDate = "";
......
23 21
	private boolean complianceOverrided = false;
24 22
	private String consentTermsOfUseLabel;
25 23
	private String fullTextDownloadLabel;
24
	private List<String> tickets;
26 25

  
27 26
	private List<SimpleParamEntry> accessParams = new ArrayList<>();
28 27

  
......
36 35
		this.label = label;
37 36
	}
38 37

  
39
	public String getCollDate() {
40
		return collDate;
41
	}
42

  
43
	public void setCollDate(final String collDate) {
44
		this.collDate = collDate;
45
	}
46

  
47
	public int getCollTotal() {
48
		return collTotal;
49
	}
50

  
51
	public void setCollTotal(final int collTotal) {
52
		this.collTotal = collTotal;
53
	}
54

  
55 38
	public List<SimpleParamEntry> getAccessParams() {
56 39
		return accessParams;
57 40
	}
......
174 157
		this.fullTextDownloadLabel = fullTextDownloadLabel;
175 158
	}
176 159

  
160
	public List<String> getTickets() {
161
		return tickets;
162
	}
163

  
164
	public void setTickets(final List<String> tickets) {
165
		this.tickets = tickets;
166
	}
167

  
177 168
}

Also available in: Unified diff