Project

General

Profile

1
package eu.dnetlib.functionality.modular.ui.lightui.objects;
2

    
3
public class IndexConfiguration {
4

    
5
	private String id;
6
	private String format;
7
	private String layout;
8
	private String interpretation;
9
	private String backendId;
10

    
11
	public IndexConfiguration() {
12
	}
13

    
14
	public IndexConfiguration(final String id, final String format, final String layout, final String interpretation, final String backendId) {
15
		this.id = id;
16
		this.format = format;
17
		this.layout = layout;
18
		this.interpretation = interpretation;
19
		this.backendId = backendId;
20
	}
21

    
22
	public String getId() {
23
		return id;
24
	}
25

    
26
	public void setId(final String id) {
27
		this.id = id;
28
	}
29

    
30
	public String getFormat() {
31
		return format;
32
	}
33

    
34
	public void setFormat(final String format) {
35
		this.format = format;
36
	}
37

    
38
	public String getLayout() {
39
		return layout;
40
	}
41

    
42
	public void setLayout(final String layout) {
43
		this.layout = layout;
44
	}
45

    
46
	public String getInterpretation() {
47
		return interpretation;
48
	}
49

    
50
	public void setInterpretation(final String interpretation) {
51
		this.interpretation = interpretation;
52
	}
53

    
54
	/**
55
	 * @return the backendId
56
	 */
57
	public String getBackendId() {
58
		return backendId;
59
	}
60

    
61
	/**
62
	 * @param backendId the backendId to set
63
	 */
64
	public void setBackendId(final String backendId) {
65
		this.backendId = backendId;
66
	}
67

    
68
}
(3-3/7)