added type to groups

This commit is contained in:
Sebastian Sdorra
2010-09-09 17:57:02 +02:00
parent 63fdd7ad0b
commit b0f637e203
2 changed files with 42 additions and 8 deletions

View File

@@ -45,10 +45,11 @@ public class GroupResource extends AbstractResource<Group>
{
groupStore = new LinkedHashMap<String, Group>();
groupStore.put("csit",
new Group("csit", "th", "merlec", "hopper", "oelkersd",
"sdorra", "gollnict"));
new Group("static", "csit", "th", "merlec", "hopper",
"oelkersd", "sdorra", "gollnict"));
groupStore.put("devel",
new Group("devel", "sdorra", "th", "merlec", "oelkersd"));
new Group("static", "devel", "sdorra", "th", "merlec",
"oelkersd"));
}
//~--- methods --------------------------------------------------------------