Kenmegne
7 days ago 23a46b4be35277e06ec89f48730eeb694e686be8
1
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
package com.megatim.fdxcommons.tools.database.queries.metadata.dataproduction;
 
import com.megatim.fdxcommons.model.dataproduction.DataProductionType;
import com.megatim.fdxcommons.tools.database.queries.metadata.QueryCriterion;
import java.time.LocalDateTime;
import java.util.LinkedHashMap;
import java.util.List;
 
/**
 *
 * @author Gabuntu
 */
public class DataProductionTaskInfo {
 
    private DataProductionTaskType dataProductionTaskType;
    private String codeTypeFichier;
    private String referentielVersion;
    private String participant;
    private String token;
    private DataProductionType dataProductionType = DataProductionType.ADD;
 
    //Pour les production de type fichier nous aurons besoin du chemin du fichier
    private String fileProductionPath;
 
    //Pour les production de type API
    private List<LinkedHashMap<String, Object>> datas;
 
    //Pour les opération de mise à jour et d'update depuis l'API
    private QueryCriterion queryCriterion;
    private LinkedHashMap<String, Object> dataToUpdate;
 
    private String fileName;
    private LocalDateTime fileDate;
 
    public DataProductionTaskType getDataProductionTaskType() {
        return dataProductionTaskType;
    }
 
    public void setDataProductionTaskType(DataProductionTaskType dataProductionTaskType) {
        this.dataProductionTaskType = dataProductionTaskType;
    }
 
    public String getCodeTypeFichier() {
        return codeTypeFichier;
    }
 
    public void setCodeTypeFichier(String codeTypeFichier) {
        this.codeTypeFichier = codeTypeFichier;
    }
 
    public String getReferentielVersion() {
        return referentielVersion;
    }
 
    public void setReferentielVersion(String referentielVersion) {
        this.referentielVersion = referentielVersion;
    }
 
    public String getParticipant() {
        return participant;
    }
 
    public void setParticipant(String participant) {
        this.participant = participant;
    }
 
    public String getFileProductionPath() {
        return fileProductionPath;
    }
 
    public void setFileProductionPath(String fileProductionPath) {
        this.fileProductionPath = fileProductionPath;
    }
 
    public List<LinkedHashMap<String, Object>> getDatas() {
        return datas;
    }
 
    public void setDatas(List<LinkedHashMap<String, Object>> datas) {
        this.datas = datas;
    }
 
    public QueryCriterion getQueryCriterion() {
        return queryCriterion;
    }
 
    public void setQueryCriterion(QueryCriterion queryCriterion) {
        this.queryCriterion = queryCriterion;
    }
 
    public DataProductionType getDataProductionType() {
        return dataProductionType;
    }
 
    public void setDataProductionType(DataProductionType dataProductionType) {
        this.dataProductionType = dataProductionType;
    }
 
    public LinkedHashMap<String, Object> getDataToUpdate() {
        return dataToUpdate;
    }
 
    public void setDataToUpdate(LinkedHashMap<String, Object> dataToUpdate) {
        this.dataToUpdate = dataToUpdate;
    }
 
    public String getToken() {
        return token;
    }
 
    public void setToken(String token) {
        this.token = token;
    }
 
    public String getFileName() {
        return fileName;
    }
 
    public void setFileName(String fileName) {
        this.fileName = fileName;
    }
 
    public LocalDateTime getFileDate() {
        return fileDate;
    }
 
    public void setFileDate(LocalDateTime fileDate) {
        this.fileDate = fileDate;
    }
}