1 package org.apache.turbine.services.security.torque; 2 3 18 19 import java.io.Serializable ; 20 21 import org.apache.turbine.services.security.torque.om.TurbineUserPeer; 22 23 61 62 public interface UserPeerManagerConstants 63 extends Serializable 64 { 65 66 public static final String USER_CLASS_KEY = 67 "torque.user.class"; 68 69 70 public static final String USER_PEER_CLASS_KEY = 71 "torque.userPeer.class"; 72 73 74 public static final String USER_PEER_CLASS_DEFAULT = 75 TurbineUserPeer.class.getName(); 76 77 78 public static final String USER_NAME_COLUMN_KEY = 79 "torque.userPeer.column.name"; 80 81 82 public static final String USER_ID_COLUMN_KEY = 83 "torque.userPeer.column.id"; 84 85 86 public static final String USER_PASSWORD_COLUMN_KEY = 87 "torque.userPeer.column.password"; 88 89 90 public static final String USER_FIRST_NAME_COLUMN_KEY = 91 "torque.userPeer.column.firstname"; 92 93 94 public static final String USER_LAST_NAME_COLUMN_KEY = 95 "torque.userPeer.column.lastname"; 96 97 98 public static final String USER_EMAIL_COLUMN_KEY = 99 "torque.userPeer.column.email"; 100 101 102 public static final String USER_CONFIRM_COLUMN_KEY = 103 "torque.userPeer.column.confirm"; 104 105 106 public static final String USER_CREATE_COLUMN_KEY = 107 "torque.userPeer.column.createdate"; 108 109 110 public static final String USER_LAST_LOGIN_COLUMN_KEY = 111 "torque.userPeer.column.lastlogin"; 112 113 114 public static final String USER_OBJECTDATA_COLUMN_KEY = 115 "torque.userPeer.column.objectdata"; 116 117 118 119 public static final String USER_NAME_COLUMN_DEFAULT = 120 "LOGIN_NAME"; 121 122 123 public static final String USER_ID_COLUMN_DEFAULT = 124 "USER_ID"; 125 126 127 public static final String USER_PASSWORD_COLUMN_DEFAULT = 128 "PASSWORD_VALUE"; 129 130 131 public static final String USER_FIRST_NAME_COLUMN_DEFAULT = 132 "FIRST_NAME"; 133 134 135 public static final String USER_LAST_NAME_COLUMN_DEFAULT = 136 "LAST_NAME"; 137 138 139 public static final String USER_EMAIL_COLUMN_DEFAULT = 140 "EMAIL"; 141 142 143 public static final String USER_CONFIRM_COLUMN_DEFAULT = 144 "CONFIRM_VALUE"; 145 146 147 public static final String USER_CREATE_COLUMN_DEFAULT = 148 "CREATED"; 149 150 151 public static final String USER_LAST_LOGIN_COLUMN_DEFAULT = 152 "LAST_LOGIN"; 153 154 155 public static final String USER_OBJECTDATA_COLUMN_DEFAULT = 156 "OBJECTDATA"; 157 158 159 public static final String USER_NAME_PROPERTY_KEY = 160 "torque.user.property.name"; 161 162 163 public static final String USER_ID_PROPERTY_KEY = 164 "torque.user.property.id"; 165 166 167 public static final String USER_PASSWORD_PROPERTY_KEY = 168 "torque.user.property.password"; 169 170 171 public static final String USER_FIRST_NAME_PROPERTY_KEY = 172 "torque.user.property.firstname"; 173 174 175 public static final String USER_LAST_NAME_PROPERTY_KEY = 176 "torque.user.property.lastname"; 177 178 179 public static final String USER_EMAIL_PROPERTY_KEY = 180 "torque.user.property.email"; 181 182 183 public static final String USER_CONFIRM_PROPERTY_KEY = 184 "torque.user.property.confirm"; 185 186 187 public static final String USER_CREATE_PROPERTY_KEY = 188 "torque.user.property.createdate"; 189 190 191 public static final String USER_LAST_LOGIN_PROPERTY_KEY = 192 "torque.user.property.lastlogin"; 193 194 195 public static final String USER_OBJECTDATA_PROPERTY_KEY = 196 "torque.user.property.objectdata"; 197 198 199 public static final String USER_NAME_PROPERTY_DEFAULT = 200 "UserName"; 201 202 203 public static final String USER_ID_PROPERTY_DEFAULT = 204 "UserId"; 205 206 207 public static final String USER_PASSWORD_PROPERTY_DEFAULT = 208 "Password"; 209 210 211 public static final String USER_FIRST_NAME_PROPERTY_DEFAULT = 212 "FirstName"; 213 214 215 public static final String USER_LAST_NAME_PROPERTY_DEFAULT = 216 "LastName"; 217 218 219 public static final String USER_EMAIL_PROPERTY_DEFAULT = 220 "Email"; 221 222 223 public static final String USER_CONFIRM_PROPERTY_DEFAULT = 224 "Confirmed"; 225 226 227 public static final String USER_CREATE_PROPERTY_DEFAULT = 228 "CreateDate"; 229 230 231 public static final String USER_LAST_LOGIN_PROPERTY_DEFAULT = 232 "LastLogin"; 233 234 235 public static final String USER_OBJECTDATA_PROPERTY_DEFAULT = 236 "Objectdata"; 237 }; 238 239 240 | Popular Tags |