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