View Javadoc

1   /**
2    * Copyright 2012 The Kuali Foundation Licensed under the
3    * Educational Community License, Version 2.0 (the "License"); you may
4    * not use this file except in compliance with the License. You may
5    * obtain a copy of the License at
6    *
7    * http://www.osedu.org/licenses/ECL-2.0
8    *
9    * Unless required by applicable law or agreed to in writing,
10   * software distributed under the License is distributed on an "AS IS"
11   * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
12   * or implied. See the License for the specific language governing
13   * permissions and limitations under the License.
14   *
15   * Created by bobhurt on 9/20/12
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   * This class is for storing the various links for the KS Kitchen Sink examples
25   * See ksKitchenSinkFooterLinks.ftl
26   *
27   * @author Kuali Student Team
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  }