Your browser does not support JavaScript and this site utilizes JavaScript to build content and provide links to additional information. You should either enable JavaScript in your browser settings or use a browser that supports JavaScript in order to take full advantage of this site.
1 package org.appfuse; 2 3 4 13 public class Constants { 14 16 17 public static final String BUNDLE_KEY = "ApplicationResources"; 18 19 20 public static final String ENC_ALGORITHM = "algorithm"; 21 22 23 public static final String ENCRYPT_PASSWORD = "encryptPassword"; 24 25 26 public static final String FILE_SEP = System.getProperty("file.separator"); 27 28 29 public static final String USER_HOME = System.getProperty("user.home") + FILE_SEP; 30 31 32 public static final String CONFIG = "appConfig"; 33 34 39 public static final String PREFERRED_LOCALE_KEY = "org.apache.struts.action.LOCALE"; 40 41 44 public static final String USER_KEY = "userForm"; 45 46 49 public static final String USER_LIST = "userList"; 50 51 54 public static final String REGISTERED = "registered"; 55 56 59 public static final String ADMIN_ROLE = "admin"; 60 61 64 public static final String USER_ROLE = "user"; 65 66 70 public static final String USER_ROLES = "userRoles"; 71 72 76 public static final String AVAILABLE_ROLES = "availableRoles"; 77 78 81 public static final String CSS_THEME = "csstheme"; 82 } 83
| Popular Tags
|