Project

General

Profile

« Previous | Next » 

Revision 50485

merged branch dsm into trunk

View differences:

RepoInterfaceEntry.java
1 1
package eu.dnetlib.functionality.modular.ui.repositories.objects;
2 2

  
3
import java.util.ArrayList;
3 4
import java.util.List;
4 5

  
5
import com.google.common.collect.Lists;
6
import eu.dnetlib.enabling.datasources.common.SearchApisEntry;
6 7

  
7
import eu.dnetlib.enabling.datasources.rmi.SearchInterfacesEntry;
8
public class RepoInterfaceEntry extends SearchApisEntry {
8 9

  
9
public class RepoInterfaceEntry extends SearchInterfacesEntry {
10

  
11 10
	private String label;
12 11
	private boolean removable = false;
13 12
	private String collDate = "";
......
19 18
	private String downloadObjId = "";
20 19
	private String repoType;
21 20
	private String email;
22
	private List<SimpleParamEntry> commonParams = Lists.newArrayList();
23
	private List<SimpleParamEntry> accessParams = Lists.newArrayList();
24
	private List<SimpleParamEntry> otherParams = Lists.newArrayList();
25
	private List<RepoMetaWfEntry> metaWFs = Lists.newArrayList();
21
	private List<SimpleParamEntry> commonParams = new ArrayList<>();
22
	private List<SimpleParamEntry> accessParams = new ArrayList<>();
23
	private List<SimpleParamEntry> otherParams = new ArrayList<>();
24
	private List<RepoMetaWfEntry> metaWFs = new ArrayList<>();
26 25

  
27 26
	public String getLabel() {
28 27
		return label;
......
140 139
		return removable;
141 140
	}
142 141

  
143
	public void setRemovable(boolean removable) {
142
	public void setRemovable(final boolean removable) {
144 143
		this.removable = removable;
145 144
	}
146 145

  

Also available in: Unified diff