Rena Tsantouli 2010-09-01 20:49:38 +00:00
parent ef85e36f9b
commit a548a84fa4
1 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,28 @@
package org.gcube.application.framework.core.util;
public class ASLGroupModel {
long groupId;
String name;
public ASLGroupModel() {
}
public void setGroupId(long groupId) {
this.groupId = groupId;
}
public void setGroupName(String groupName) {
this.name = groupName;
}
public long getGroupId() {
return groupId;
}
public String getGroupName() {
return name;
}
}