1 package com.instantbank.collections.security.realm;
2
3 import weblogic.security.acl.FlatGroup;
4 import java.util.Hashtable;
5
6
12 public class InstantbankRealmGroup extends FlatGroup {
13 private InstantbankRealm realm;
14 private Long groupId;
15
16
17 public Long getGroupId() {
18 return this.groupId;
19 }
20
21
22 public Hashtable getMembers() {
23 return this.members;
24 }
25
26
27 protected Class getUserClass() {
28 return InstantbankRealmUser.class;
29 }
30
31
32
39 public InstantbankRealmGroup(String name, Long groupId, InstantbankRealm realm) {
40 super(name, realm);
41 this.realm = realm;
42 this.groupId = groupId;
43 }
44 }
45
46