Project

General

Profile

1
package eu.dnetlib.index.action;
2

    
3
/**
4
 * Blackboard parameter names shortcuts.
5
 *
6
 * @author claudio
7
 */
8
public final class BBParam {
9

    
10
	/**
11
	 * Service id BB param name.
12
	 */
13
	public static final String SERVICE_ID = "service_id";
14

    
15
	/**
16
	 * ResultSet epr BB param name.
17
	 */
18
	public static final String RS_EPR = "resultset_epr";
19

    
20
	/**
21
	 * Index epr BB param name.
22
	 */
23
	public static final String INDEX_EPR = "index_epr";
24

    
25
	/**
26
	 * Index DS id BB param name.
27
	 */
28
	public static final String INDEX_DS_ID = "id";
29

    
30
	/**
31
	 * Local URI BB param name.
32
	 */
33
	public static final String LOCAL_URI = "local_URI";
34

    
35
	/**
36
	 * Feeding type BB param name.
37
	 */
38
	public static final String FEEDING_TYPE = "feeding_type";
39

    
40
	/**
41
	 * Query BB param name.
42
	 */
43
	public static final String QUERY = "query";
44

    
45
	/**
46
	 * Metadata format BB param name.
47
	 */
48
	public static final String FORMAT = "format";
49

    
50
	/**
51
	 * Layout BB param name.
52
	 */
53
	public static final String LAYOUT = "layout";
54

    
55
	/**
56
	 * Interpretation BB param name.
57
	 */
58
	public static final String INTERP = "interpretation";
59

    
60
	/**
61
	 * The BackEnd indentifier param name.
62
	 */
63
	public static final String BACKEND = "backend_Id";
64

    
65
	/**
66
	 * Private constructor.
67
	 */
68
	private BBParam() {
69

    
70
	}
71
}
(2-2/9)