View Javadoc

1   /**
2    * Copyright 2013 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 David Yin on 1/16/13
16   */
17  package org.kuali.student.enrollment.uif.form;
18  
19  import org.kuali.rice.krad.web.form.UifFormBase;
20  
21  import java.util.LinkedHashMap;
22  import java.util.Map;
23  
24  /**
25   * KS form class that extends UifFormBase. It contains properties that are shared
26   * among all the KS forms.
27   *
28   * @author Kuali Student Team
29   */
30  public class KSUifForm extends UifFormBase {
31      private String breadCrumbJSON; //JSON string of customized breadcrumb of a page
32      private Map<String,Map<String,String>> breadCrumbItemsMap; //Map that storing breadcrumb maps for all the pages that have it configured in the current view
33      private String homeUrl;
34      private Map<String, Map<String, String>> previousFormsMap;
35  
36      public KSUifForm() {
37          //breadCrumbJSON = "";
38      }
39  
40      public String getBreadCrumbJSON() {
41          return breadCrumbJSON;
42      }
43  
44      public void setBreadCrumbJSON(String breadCrumbJSON) {
45          this.breadCrumbJSON = breadCrumbJSON;
46      }
47  
48      public Map<String,Map<String,String>> getBreadCrumbItemsMap() {
49          return breadCrumbItemsMap;
50      }
51  
52      public void setBreadCrumbItemsMap(Map<String,Map<String,String>> breadCrumbItemsMap) {
53          this.breadCrumbItemsMap = breadCrumbItemsMap;
54      }
55  
56      public String getHomeUrl() {
57          return homeUrl;
58      }
59  
60      public void setHomeUrl(String homeUrl) {
61          this.homeUrl = homeUrl;
62      }
63  
64      public Map<String, Map<String, String>> getPreviousFormsMap() {
65          return previousFormsMap;
66      }
67  
68      public void setPreviousFormsMap(Map<String, Map<String, String>> previousFormsMap) {
69          this.previousFormsMap = previousFormsMap;
70      }
71  }