01: package org.claros.mini.utility;
02:
03: import com.jenkov.mrpersister.PersistenceManager;
04:
05: /**
06: * @author Umut Gokbayrak
07: *
08: */
09: public class Constants {
10: public static final String GENERALERR = "/error/generalErr.do";
11: public static PersistenceManager persistMan = new PersistenceManager();
12: public static final String NEW_MESSAGE = "new";
13: public static final String REPLY_MESSAGE = "reply";
14: public static final String REPLY_ALL_MESSAGE = "reply_all";
15: public static final String FORWARD_MESSAGE = "forward";
16: public static final String CONTACT_MESSAGE = "contact";
17:
18: public static final Integer FOLDER_TYPE_INBOX = new Integer(1);
19: public static final Integer FOLDER_TYPE_JUNK = new Integer(2);
20: public static final Integer FOLDER_TYPE_SENT = new Integer(3);
21: public static final Integer FOLDER_TYPE_CUSTOM = new Integer(4);
22:
23: }
|