1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.kuali.student.common.kitchensink.uif;
18
19 import java.io.Serializable;
20 import java.util.HashMap;
21 import java.util.Map;
22
23
24
25
26
27
28
29 public class KitchenSinkFooterLinkGroup implements Serializable {
30 private String label;
31 private String style;
32 private Map<String, String> footerLinks;
33
34 public KitchenSinkFooterLinkGroup() {
35 footerLinks = new HashMap<String, String>();
36 }
37
38 public String getLabel() {
39 return label;
40 }
41 public void setLabel(String label) {
42 this.label = label;
43 }
44
45 public String getStyle() {
46 return style;
47 }
48 public void setStyle(String style) {
49 this.style = style;
50 }
51
52 public Map<String, String> getFooterLinks() {
53 return footerLinks;
54 }
55 public void setFooterLinks(Map<String, String> footerLinks) {
56 this.footerLinks = footerLinks;
57 }
58 }