Project

General

Profile

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

    
3
public class MDStoreDescription {
4

    
5
	private String id;
6

    
7
	private String format;
8

    
9
	private String layout;
10

    
11
	private String interpretation;
12

    
13
	private int size;
14

    
15
	private boolean indexed;
16

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

    
27
	public MDStoreDescription() {
28

    
29
	}
30

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

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

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

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

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

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

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

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

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

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

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

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

    
79
}
(2-2/10)