1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.kuali.student.common.uif.util;
18
19
20
21
22
23 public class KSCommentsConstants {
24
25 public static final String KSCOMMENT_MSG_ERROR_EMPTY_TEXT_FIELD = "error.enroll.kscomment.emptyTextFied";
26 public static final String KSCOMMENT_MSG_ERROR_TOO_LONG = "error.enroll.kscomment.tooLong";
27 public static final String KSCOMMENT_MSG_ERROR_INDEX_OUT_OF_BOUND = "error.enroll.kscomment.commentNotFound";
28 public static final String KSCOMMENT_MSG_ERROR_NO_ADD_PERMISSION = "error.enroll.kscomment.noAddPermission";
29 public static final String KSCOMMENT_MSG_ERROR_NO_EDIT_PERMISSION = "error.enroll.kscomment.noEditPermission";
30 public static final String KSCOMMENT_MSG_ERROR_NO_DELETE_PERMISSION = "error.enroll.kscomment.noDeletePermission";
31 }