]> SALOME platform Git repositories - modules/gde.git/blob - projects/GDE_App/GDE-ejb/src/java/com/edf/gde/transferables/UserTO.java
Salome HOME
New named query in UserGroup
[modules/gde.git] / projects / GDE_App / GDE-ejb / src / java / com / edf / gde / transferables / UserTO.java
1 package com.edf.gde.transferables;
2
3 /**
4  *
5  * @author Kavoos
6  */
7 public class UserTO {
8     private Long id;
9     private String name;
10     private String password;
11
12     public UserTO() {
13     }
14
15     public Long getId() {
16         return id;
17     }
18
19     public void setId(Long id) {
20         this.id = id;
21     }
22
23     public String getName() {
24         return name;
25     }
26
27     public void setName(String name) {
28         this.name = name;
29     }
30
31     public String getPassword() {
32         return password;
33     }
34
35     public void setPassword(String password) {
36         this.password = password;
37     }
38
39     
40 }