]> SALOME platform Git repositories - modules/gde.git/blob - projects/GDE-transferables/src/com/edf/gde/transferables/ProfileAttributeTO.java
Salome HOME
b8f46e73907d58dc990bfdea4e5ef43bccf62b20
[modules/gde.git] / projects / GDE-transferables / src / com / edf / gde / transferables / ProfileAttributeTO.java
1 package com.edf.gde.transferables;
2
3 import java.io.Serializable;
4
5 /*
6  * (C) 2015 EDF
7  */
8 /**
9  *
10  * @author Kavoos
11  */
12 public class ProfileAttributeTO implements Serializable {
13
14     private long id;
15     private String name;
16     private String type;
17     private boolean mandatory;
18     private long profileId;
19
20     public ProfileAttributeTO() {
21     }
22
23     public long getId() {
24         return id;
25     }
26
27     public void setId(long id) {
28         this.id = id;
29     }
30
31     public String getName() {
32         return name;
33     }
34
35     public void setName(String name) {
36         this.name = name;
37     }
38
39     public String getType() {
40         return type;
41     }
42
43     public void setType(String type) {
44         this.type = type;
45     }
46
47     public boolean isMandatory() {
48         return mandatory;
49     }
50
51     public void setMandatory(boolean mandatory) {
52         this.mandatory = mandatory;
53     }
54
55     public long getProfileId() {
56         return profileId;
57     }
58
59     public void setProfileId(long profileId) {
60         this.profileId = profileId;
61     }
62 }