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
package com.megatim.fdxcommons.model.dataproduction;
 
import com.megatim.fdxcommons.model.enumeration.StatutDataProduction;
import com.megatim.fdxcommons.model.search.CriteriaEntitySearch;
import java.io.Serializable;
import java.time.LocalDateTime;
import javax.persistence.EnumType;
import javax.persistence.Enumerated;
import javax.persistence.Id;
import javax.persistence.MappedSuperclass;
import javax.validation.constraints.NotNull;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
 
/**
 *
 * @author ASUS
 */
@Getter
@Setter
@NoArgsConstructor
@MappedSuperclass
public class CommonDataProduction implements Serializable {
 
    @Id
    private Long id;
 
    @NotNull(message = "Le type de fichier est obligatoire")
    @CriteriaEntitySearch(libelle = "Type du Fichier", rang = 1)
    protected String codeTypeFichier;
 
    @CriteriaEntitySearch(libelle = "Participant", rang = 2)
    protected String codeParticipant;
 
    @NotNull(message = "Le référentiel est obligatoire")
    @CriteriaEntitySearch(libelle = "Référentiel", rang = 3)
    protected String referentielVersion;
 
    @NotNull(message = "La source est obligatoire")
    @Enumerated(EnumType.STRING)
    @CriteriaEntitySearch(libelle = "Source de la production", rang = 4)
    protected DataProductionSource source;
 
    @NotNull(message = "La date est obligatoire")
    @CriteriaEntitySearch(libelle = "Date création de la production", rang = 0)
    protected LocalDateTime dateProduction;
 
    @CriteriaEntitySearch(libelle = "Nom du Fichier", rang = 5)
    protected String fileName;
 
    @NotNull(message = "La statut de la production est obligatoire")
    @Enumerated(EnumType.STRING)
    protected StatutDataProduction statutDataProduction = StatutDataProduction.A_CONSOMMER;
 
    protected LocalDateTime fileDate;
 
    @Enumerated(EnumType.STRING)
    protected DataProductionType dataProductionType = DataProductionType.ADD;
 
    protected String token;
 
    protected LocalDateTime dateMiseAJour;
 
    protected Long nbreElements = 0L;
 
    protected Long tailleFichier = 0L;//en octet
 
    protected String integrationFileName;// Nom du fichier généré pour consommation par Standalone et Consultation
 
    protected String tokenDirectory;
 
}