1 package com.instantbank.component.parameter.util;
2
3 import java.util.*;
4 import java.io.Serializable;
5
6
12
13 public class GroupParm
14 implements Serializable {
15
16 private String groupName;
17
18 private ArrayList group;
19
20
21
27 public GroupParm(String groupName) {
28
29 this.groupName = groupName;
30 this.group = new ArrayList();
31 }
32
33
34
39 public String getGroupName() {
40 return (this.groupName);
41 }
42
43
44
49 public ArrayList getGroup() {
50 return (this.group);
51 }
52
53 }
54