1 package fr.ifremer.tutti.service.genericformat;
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27 import fr.ifremer.tutti.persistence.model.ProgramDataModel;
28
29 import java.io.File;
30 import java.io.Serializable;
31
32
33
34
35
36
37
38 public class GenericFormatExportConfiguration implements Serializable {
39
40 private static final long serialVersionUID = -6500054741804757627L;
41
42
43
44
45 private ProgramDataModel dataToExport;
46
47
48
49
50 private File exportFile;
51
52
53
54
55 private boolean exportAttachments;
56
57
58
59
60 private boolean exportSpecies;
61
62
63
64
65 private boolean exportBenthos;
66
67
68
69
70 private boolean exportMarineLitter;
71
72
73
74
75 private boolean exportAccidentalCatch;
76
77
78
79
80 private boolean exportIndividualObservation;
81
82 public ProgramDataModel getDataToExport() {
83 return dataToExport;
84 }
85
86 public void setDataToExport(ProgramDataModel dataToExport) {
87 this.dataToExport = dataToExport;
88 }
89
90 public boolean isExportAttachments() {
91 return exportAttachments;
92 }
93
94 public void setExportAttachments(boolean exportAttachments) {
95 this.exportAttachments = exportAttachments;
96 }
97
98 public File getExportFile() {
99 return exportFile;
100 }
101
102 public void setExportFile(File exportFile) {
103 this.exportFile = exportFile;
104 }
105
106 public void setExportSpecies(boolean exportSpecies) {
107 this.exportSpecies = exportSpecies;
108 }
109
110 public boolean isExportSpecies() {
111 return exportSpecies;
112 }
113
114 public void setExportBenthos(boolean exportBenthos) {
115 this.exportBenthos = exportBenthos;
116 }
117
118 public boolean isExportBenthos() {
119 return exportBenthos;
120 }
121
122 public void setExportMarineLitter(boolean exportMarineLitter) {
123 this.exportMarineLitter = exportMarineLitter;
124 }
125
126 public boolean isExportMarineLitter() {
127 return exportMarineLitter;
128 }
129
130 public void setExportAccidentalCatch(boolean exportAccidentalCatch) {
131 this.exportAccidentalCatch = exportAccidentalCatch;
132 }
133
134 public boolean isExportAccidentalCatch() {
135 return exportAccidentalCatch;
136 }
137
138 public void setExportIndividualObservation(boolean exportIndividualObservation) {
139 this.exportIndividualObservation = exportIndividualObservation;
140 }
141
142 public boolean isExportIndividualObservation() {
143 return exportIndividualObservation;
144 }
145
146 }