1    package com.instantbank.collections.security.realm;
2    
3    import weblogic.security.acl.FlatGroup;
4    import java.util.Hashtable;
5    
6    /**
7     * A Class class.
8     * <P>
9     *
10    * @author Indudata Ltd.
11    */
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     /**
33      * Constructor
34      *
35      * @param name Description of the Parameter
36      * @param groupId Description of the Parameter
37      * @param realm Description of the Parameter
38      */
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