]> SALOME platform Git repositories - modules/gde.git/blob - projects/GDE_App/GDE-ejb/src/java/com/edf/gde/transferables/StudyTO.java
Salome HOME
Add study
[modules/gde.git] / projects / GDE_App / GDE-ejb / src / java / com / edf / gde / transferables / StudyTO.java
1 /*
2  * To change this license header, choose License Headers in Project Properties.
3  * To change this template file, choose Tools | Templates
4  * and open the template in the editor.
5  */
6 package com.edf.gde.transferables;
7
8 import java.io.Serializable;
9 import java.util.Collection;
10 import java.util.Date;
11
12 /**
13  *
14  * @author F62173
15  */
16 public class StudyTO implements Serializable {
17     
18     private static final long serialVersionUID = 1L;
19     private long id;
20     private String name;
21     private Date creationDate;
22     private Date updateDate;
23     private Boolean valid;
24     private Boolean deleted;
25     private Date deletionDate;
26     private long attributeGroupId;
27
28     public StudyTO() {
29     }
30
31     public StudyTO(long id, String name, Date creationDate, Date updateDate, Boolean valid, Boolean deleted, Date deletionDate, long attributeGroupId) {
32         this.id = id;
33         this.name = name;
34         this.creationDate = creationDate;
35         this.updateDate = updateDate;
36         this.valid = valid;
37         this.deleted = deleted;
38         this.deletionDate = deletionDate;
39         this.attributeGroupId = attributeGroupId;
40     }
41
42     public long getId() {
43         return id;
44     }
45
46     public void setId(long id) {
47         this.id = id;
48     }
49
50     public String getName() {
51         return name;
52     }
53
54     public void setName(String name) {
55         this.name = name;
56     }
57
58     public Date getCreationDate() {
59         return creationDate;
60     }
61
62     public void setCreationDate(Date creationDate) {
63         this.creationDate = creationDate;
64     }
65
66     public Date getUpdateDate() {
67         return updateDate;
68     }
69
70     public void setUpdateDate(Date updateDate) {
71         this.updateDate = updateDate;
72     }
73
74     public Boolean getValid() {
75         return valid;
76     }
77
78     public void setValid(Boolean valid) {
79         this.valid = valid;
80     }
81
82     public Boolean getDeleted() {
83         return deleted;
84     }
85
86     public void setDeleted(Boolean deleted) {
87         this.deleted = deleted;
88     }
89
90     public Date getDeletionDate() {
91         return deletionDate;
92     }
93
94     public void setDeletionDate(Date deletionDate) {
95         this.deletionDate = deletionDate;
96     }
97
98     public long getAttributeGroupId() {
99         return attributeGroupId;
100     }
101
102     public void setAttributeGroupId(long attributeGroupId) {
103         this.attributeGroupId = attributeGroupId;
104     }
105     
106 }