Project

General

Profile

1
package eu.dnetlib.data.mdstore.modular;
2

    
3

    
4
public class MDStoreDescription {
5

    
6
	private String id;
7

    
8
	private String format;
9

    
10
	private String layout;
11

    
12
	private String interpretation;
13

    
14
	private int size;
15

    
16
	private boolean indexed;
17

    
18
	public MDStoreDescription(final String id, final String format, final String layout, final String interpretation, final int size, final boolean indexed) {
19
		super();
20
		this.id = id;
21
		this.format = format;
22
		this.layout = layout;
23
		this.interpretation = interpretation;
24
		this.size = size;
25
		this.indexed = indexed;
26
	}
27

    
28
    public MDStoreDescription() {
29

    
30
    }
31

    
32
    public String getId() {
33
		return id;
34
	}
35

    
36
	public void setId(final String id) {
37
		this.id = id;
38
	}
39

    
40
	public String getFormat() {
41
		return format;
42
	}
43

    
44
	public void setFormat(final String format) {
45
		this.format = format;
46
	}
47

    
48
	public String getLayout() {
49
		return layout;
50
	}
51

    
52
	public void setLayout(final String layout) {
53
		this.layout = layout;
54
	}
55

    
56
	public String getInterpretation() {
57
		return interpretation;
58
	}
59

    
60
	public void setInterpretation(final String interpretation) {
61
		this.interpretation = interpretation;
62
	}
63

    
64
	public int getSize() {
65
		return size;
66
	}
67

    
68
	public void setSize(final int size) {
69
		this.size = size;
70
	}
71

    
72
	public boolean isIndexed() {
73
		return indexed;
74
	}
75

    
76
	public void setIndexed(final boolean indexed) {
77
		this.indexed = indexed;
78
	}
79

    
80
}
(4-4/13)