View Javadoc

1   /*
2    * Copyright 2011-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  package org.kuali.mobility.academics.util;
16  
17  /**
18   *
19   * @author Joe Swanson <joseswan@umich.edu>
20   */
21  public class AcademicsConstants {
22  
23      public static final String STAGE = "stage";
24      public static final String TERM = "term";
25      public static final String CAREER = "career";
26      public static final String SUBJECT = "subject";
27      public static final String TERM_ID = "termId";
28      public static final String TERM_DESCRIPTION="termDescription";
29      public static final String CAREER_ID = "careerId";
30      public static final String SUBJECT_ID = "subjectId";
31      public static final String CATALOG_NUMBER = "catalogNumber";
32      public static final String CATALOG_DESCRIPTION="catalogDescription";
33      public static final String COURSE_ID = "courseId";
34      public static final String CLASS_SECTION = "classSection";
35      public static final String COURSE_OFFER_NBR = "courseOfferNumber";
36      public static final String CLASS_NUMBER = "classNumber";
37      public static final String SEARCH_MODE = "searchMode";
38      public static final String SEARCH_TEXT = "searchText";
39      public static final String USER_ID = "uid";
40      public static final String EMPL_ID = "emplId";
41      public static final String INSTRUCTOR = "instructor";
42      public static final String FILTER_CRITERIA = "filterCriteria";
43      public static final String SHOW_OPEN = "showOpen";
44      public static final String SECTIONS = "sectionsAll";
45      public static final String SEARCH_RESULT ="searchResult";
46      public static final String BACKBUTTON_URL = "backButtonURL";
47      public static final String TITLE = "title";
48  
49  	public static final String HOME_SCREEN_TOOLS = "homeScreenTools";
50  }