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.fdxconsultation.model.supervision;
 
import java.io.Serializable;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import javax.persistence.CascadeType;
import javax.persistence.Column;
import javax.persistence.ElementCollection;
import javax.persistence.Entity;
import javax.persistence.EnumType;
import javax.persistence.Enumerated;
import javax.persistence.FetchType;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.OneToMany;
import javax.persistence.SequenceGenerator;
import javax.validation.constraints.NotEmpty;
import javax.validation.constraints.NotNull;
import lombok.Getter;
import lombok.Setter;
 
/**
 *
 * @author ASUS
 */
@Getter
@Setter
@Entity
public class StandaloneServerStateEntity implements Serializable {
 
    @SequenceGenerator(name = "SEQ_STANDALONE_SERVER_STATE",
            sequenceName = "SEQ_STANDALONE_SERVER_STATE",
            allocationSize = 1,
            initialValue = 1)
    @GeneratedValue(strategy = GenerationType.SEQUENCE, generator = "SEQ_STANDALONE_SERVER_STATE")
    @Column(name = "ID")
    @Id
    private Long id;
 
    @NotEmpty(message = "Le référentiel est obligatoire")
    private String currentReferential;
 
    //Configuration serveur
    private String serverAddress;
    private int closingDelay;
 
    @ElementCollection(targetClass = Integer.class, fetch = FetchType.EAGER)
    private List<Integer> portNumbers;
 
    private String integrationPath;
    private String referentialIntegrationPath;
    private String fileIntegrationPath;
 
    //Option d'affichage
    private int transfertDisplayOptions;
    private int logDisplayOptions;
 
    //Répertoires de BAL
    private String inDir;
    private String outDir;
    private String errDir;
    private String tmpDir;
 
    @Enumerated(EnumType.STRING)
    @NotNull(message = "Le statut de la configuration est obligatoire")
    private StatutConfiguration statutConfiguration;
 
    //Configurations des agents
    @OneToMany(cascade = CascadeType.ALL, mappedBy = "standaloneServerState")
    private Set<AgentConfigurationEntity> agentConfigurations = new HashSet<>();
}