1 package org.kuali.ole.deliver.constant;
2
3
4
5
6
7
8
9
10 public class OLEPatronConstant {
11
12 public static final String FIRSTNAME_BLANK_ERROR = "First name cannot be blank";
13 public static final String SURNAME_BLANK_ERROR = "Surname cannot be blank";
14 public static final String BORROWERTYPE_ERROR = "Borrower type is not found in the system";
15 public static final String BORROWERTYPE_BLANK_ERROR = "Borrower type cannot be blank";
16 public static final String ADDRESSTYPE_ERROR = "Address type is not found in the system";
17 public static final String ADDRESS_SOURCE_ERROR = "Address Source code is not found in the system";
18 public static final String ADDRESS_TYPE_BLANK_ERROR = "Address type cannot be blank";
19 public static final String STATE_ERROR = "State is not found in the system";
20 public static final String COUNTRY_ADDRESS_ERROR = "Country is not found in the system for postal address";
21 public static final String COUNTRY_PHONE_ERROR = "Country is not found in the system for telephone number";
22 public static final String STATE_BLANK_ERROR = "State cannot be blank";
23 public static final String PHONETYPE_ERROR = "Phone type is not found in the system";
24 public static final String PHONETYPE_BLANK_ERROR = "Phone type cannot be blank";
25 public static final String EMAILTYPE_ERROR = "Email type is not found in the system";
26 public static final String EMAILTYPE_BLANK_ERROR = "Email type cannot be blank";
27
28 public static final String NOTETYPE_BLANK_ERROR = "Note type cannot be blank";
29 public static final String EMAIL_DEFAULT_VALUE_ERROR = "Either of the Default value should be true in Email Address";
30 public static final String PHONE_DEFAULT_VALUE_ERROR = "Either of the Default value should be true in TelePhone Number";
31 public static final String ADDRESS_DEFAULT_VALUE_ERROR = "Either of the Default value should be true in Postal Address";
32 public static final String DEFAULT_DELIVER_ADDRESS_ERROR = "Either of the Default Deliver Address should be true in Postal Address";
33 public static final String NOTETYPE_ERROR = "Note type is not found in the system";
34 public static final String AFFILIATION_CODE_ERROR = "Affiliation code is not found in the system";
35 public static final String CAMPUS_CODE_ERROR = "Campus code is not found in the system";
36 public static final String EMPLOYMENT_TYPE_ERROR = "Employment type is not found in the system";
37 public static final String EMPLOYMENT_STATUS_ERROR = "Employment Status is not found in the system";
38 public static final String SOURCE_CODE_ERROR = "Source Code is not found in the system";
39 public static final String STATISTICAL_CATEGORY_CODE_ERROR = "Statistical Category Code is not found in the system";
40 public static final String PATRON_LINK_ERROR = "Cannot delete this patron, it has link records";
41 public static final String EXPIRATION_DATE_ERROR = "Expiration date must be in past";
42 public static final String DUP_PATRON_BARCODE_ERROR = "Duplicate Barcode is found";
43 public static final String PATRON_BARCODE_EMPTY = "Barcode is required field";
44 public static final String PATRON_ADDRESS_SOURCE_REQUIRED = "Address source is required field";
45 public static final String PATRON_FILE_NAME = "samplePatronRecord.xml";
46 public static final String PATRON_MULTIPART_FIELD_NAME = "patronFile";
47 public static final String PATRON_MULTIPART_CONTENT_TYPE = "text/xml";
48
49 }