Salome HOME
Added missing sources
[modules/gde.git] / projects / GDE-transferables / src / com / edf / gde / transferables / ProfileTO.java
1 /*
2  * (C) 2015 EDF
3  */
4 package com.edf.gde.transferables;
5
6 import java.io.Serializable;
7 import java.util.List;
8
9 /**
10  *
11  * @author Kavoos
12  */
13 public class ProfileTO implements Serializable {
14     private long id;
15     private String name;
16     List<ProfileAttributeTO> attributes;
17
18     public ProfileTO() {
19     }
20
21     public long getId() {
22         return id;
23     }
24
25     public void setId(long id) {
26         this.id = id;
27     }
28
29     public String getName() {
30         return name;
31     }
32
33     public void setName(String name) {
34         this.name = name;
35     }
36
37     public List<ProfileAttributeTO> getAttributes() {
38         return attributes;
39     }
40
41     public void setAttributes(List<ProfileAttributeTO> attributes) {
42         this.attributes = attributes;
43     }
44     
45 }