]> SALOME platform Git repositories - modules/gde.git/blob - projects/GDE_App/GDE-ejb/src/java/com/edf/gde/transferables/StudyTO.java
Salome HOME
Created "Group" entity and TO
[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     private long profileId;
28
29     public StudyTO() {
30     }
31
32     public StudyTO(long id, String name, Date creationDate, Date updateDate, Boolean valid, Boolean deleted, Date deletionDate, long attributeGroupId, long profileId) {
33         this.id = id;
34         this.name = name;
35         this.creationDate = creationDate;
36         this.updateDate = updateDate;
37         this.valid = valid;
38         this.deleted = deleted;
39         this.deletionDate = deletionDate;
40         this.attributeGroupId = attributeGroupId;
41         this.profileId = profileId;
42     }
43
44     public long getId() {
45         return id;
46     }
47
48     public void setId(long id) {
49         this.id = id;
50     }
51
52     public String getName() {
53         return name;
54     }
55
56     public void setName(String name) {
57         this.name = name;
58     }
59
60     public Date getCreationDate() {
61         return creationDate;
62     }
63
64     public void setCreationDate(Date creationDate) {
65         this.creationDate = creationDate;
66     }
67
68     public Date getUpdateDate() {
69         return updateDate;
70     }
71
72     public void setUpdateDate(Date updateDate) {
73         this.updateDate = updateDate;
74     }
75
76     public Boolean getValid() {
77         return valid;
78     }
79
80     public void setValid(Boolean valid) {
81         this.valid = valid;
82     }
83
84     public Boolean getDeleted() {
85         return deleted;
86     }
87
88     public void setDeleted(Boolean deleted) {
89         this.deleted = deleted;
90     }
91
92     public Date getDeletionDate() {
93         return deletionDate;
94     }
95
96     public void setDeletionDate(Date deletionDate) {
97         this.deletionDate = deletionDate;
98     }
99
100     public long getAttributeGroupId() {
101         return attributeGroupId;
102     }
103
104     public void setAttributeGroupId(long attributeGroupId) {
105         this.attributeGroupId = attributeGroupId;
106     }
107
108     public long getProfileId() {
109         return profileId;
110     }
111
112     public void setProfileId(long profileId) {
113         this.profileId = profileId;
114     }
115     
116 }