Project

General

Profile

« Previous | Next » 

Revision 62940

Added by Michele Artini 11 months ago

added new fields in search response

View differences:

modules/dnet-modular-repositories-ui/trunk/pom.xml
9 9
	<groupId>eu.dnetlib</groupId>
10 10
	<artifactId>dnet-modular-repositories-ui</artifactId>
11 11
	<packaging>jar</packaging>
12
	<version>5.0.2-SNAPSHOT</version>
12
	<version>5.1.0-SNAPSHOT</version>
13 13
	<scm>
14 14
   		<developerConnection>scm:svn:https://svn.driver.research-infrastructures.eu/driver/dnet45/modules/dnet-modular-repositories-ui/trunk</developerConnection>
15 15
	</scm>
......
27 27
		<dependency>
28 28
			<groupId>eu.dnetlib</groupId>
29 29
			<artifactId>dnet-datasource-manager-common</artifactId>
30
			<version>[2.0.0,3.0.0)</version>
30
			<version>[2.1.0-SNAPSHOT,3.0.0)</version>
31 31
		</dependency>
32 32
		<dependency>
33 33
			<groupId>junit</groupId>
modules/dnet-modular-repositories-ui/trunk/src/main/java/eu/dnetlib/functionality/modular/ui/repositories/objects/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