| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
package org.kuali.student.lum.lu.ui.tools.client.configuration; |
| 17 | |
|
| 18 | |
|
| 19 | |
|
| 20 | |
|
| 21 | |
|
| 22 | |
|
| 23 | 0 | public class CatalogBrowserConstants |
| 24 | |
{ |
| 25 | |
|
| 26 | |
public static final String COURSE_CATALOG = "courseCatalog"; |
| 27 | |
public static final String BY_SUBJECT_AREA = "bySubjectArea"; |
| 28 | |
public static final String BY_SCHOOL_OR_COLLEGE = "bySchoolOrCollege"; |
| 29 | |
public static final String COURSE_ID = "courseId"; |
| 30 | |
public static final String FULLY_QUALIFIED_BY_SUBJECT_AREA = |
| 31 | |
COURSE_CATALOG + "/" + BY_SUBJECT_AREA + "/" + COURSE_ID; |
| 32 | |
public static final String FULLY_QUALIFIED_BY_SCHOOL_OR_COLLEGE = |
| 33 | |
COURSE_CATALOG + "/" + BY_SCHOOL_OR_COLLEGE + "/" + COURSE_ID; |
| 34 | |
|
| 35 | |
|
| 36 | |
public static final String BROWSE_BY_SUBJECT_AREA_LABEL_KEY = "browseBySubjectArea"; |
| 37 | |
public static final String BROWSE_BY_SCHOOL_LABEL_KEY = "browseBySchool"; |
| 38 | |
public static final String BROWSE_BY_SUBJECT_AREA = "Browse Catalog by Subject Area"; |
| 39 | |
public static final String BROWSE_BY_SUBJECT_AREA_INFO = "Subject Area Information"; |
| 40 | |
public static final String BROWSE_BY_SCHOOL = "Browse Catalog by School"; |
| 41 | |
public static final String BROWSE_BY_SCHOOL_INFO = "School Information"; |
| 42 | |
} |
| 43 | |
|