Project

General

Profile

1
package eu.dnetlib.openaire.community;
2

    
3
import java.util.Set;
4

    
5
import com.google.common.collect.Sets;
6

    
7
public class CommunityConstants {
8

    
9
	public final static Set<String> communityBlackList = Sets.newHashSet("fet-fp7", "fet-h2020");
10

    
11
	// common
12
	public final static String OPENAIRE_ID = "openaireId";
13
	public final static String PIPE_SEPARATOR = "||";
14
	public final static String ID_SEPARATOR = "::";
15
	public final static String CSV_DELIMITER = ", ";
16
	public final static String CLABEL = "label";
17

    
18
	// id suffixes
19
	public final static String PROJECTS_ID_SUFFIX = ID_SEPARATOR + "projects";
20
	public final static String CONTENTPROVIDERS_ID_SUFFIX = ID_SEPARATOR + "contentproviders";
21

    
22
	// community summary
23
	public final static String CSUMMARY_DESCRIPTION = "description";
24
	public final static String CSUMMARY_LOGOURL = "logourl";
25
	public final static String CSUMMARY_NAME = "name";
26
	public final static String CSUMMARY_MANAGER = "manager";
27

    
28
	// community profile
29
	public final static String CPROFILE_SUBJECT = "subject";
30

    
31
	// community project
32
	public final static String CPROJECT_FUNDER = "funder";
33
	public final static String CPROJECT_NUMBER = "CD_PROJECT_NUMBER";
34
	public final static String CPROJECT_FULLNAME = "projectfullname";
35
	public final static String CPROJECT_ACRONYM = "projectacronym";
36

    
37
	// community content provider
38
	public final static String CCONTENTPROVIDER_NAME = "name";
39
	public final static String CCONTENTPROVIDER_OFFICIALNAME = "officialname";
40

    
41
}
(3-3/11)