1    package com.instantbank.component.parameter.util;
2    
3    import java.util.*;
4    import java.io.Serializable;
5    
6    /**
7     *  Utility class allowing manipulation of parameters restriction.
8     *
9     * @author InstantBank (Roberto Contreras - Jorge Cardenas).
10    * @created October 2002
11    */
12   
13   public class GroupParm
14       implements Serializable {
15   
16     private String groupName;
17   
18     private ArrayList group;
19   
20   
21     /**
22      *  Constructor . <br>
23      *  <br>
24      *
25      * @param groupName Description of the Parameter
26      */
27     public GroupParm(String groupName) {
28   
29       this.groupName = groupName;
30       this.group = new ArrayList();
31     }
32   
33   
34     /**
35      *  Getter method for name of group.
36      *
37      * @return The name group
38      */
39     public String getGroupName() {
40       return (this.groupName);
41     }
42   
43   
44     /**
45      *  Getter method for Array of parameters.
46      *
47      * @return The Array of parameters of a group
48      */
49     public ArrayList getGroup() {
50       return (this.group);
51     }
52   
53   }
54