JamesUsersJdbcRepositorypublic class JamesUsersJdbcRepository extends AbstractJdbcUsersRepository A Jdbc-backed UserRepository which handles User instances
of the DefaultJamesUser class, or any superclass. |
Methods Summary |
---|
public boolean | addUser(java.lang.String username, java.lang.String password)
User newbie = new DefaultJamesUser(username, "SHA");
newbie.setPassword(password);
return addUser(newbie);
| protected org.apache.james.services.User | readUserFromResultSet(java.sql.ResultSet rsUsers)Reads properties for a User from an open ResultSet.
// Get the column values
String username = rsUsers.getString(1);
String pwdHash = rsUsers.getString(2);
String pwdAlgorithm = rsUsers.getString(3);
boolean useForwarding = rsUsers.getBoolean(4);
String forwardingDestination = rsUsers.getString(5);
boolean useAlias = rsUsers.getBoolean(6);
String alias = rsUsers.getString(7);
MailAddress forwardAddress = null;
if ( forwardingDestination != null ) {
try {
forwardAddress = new MailAddress(forwardingDestination);
}
catch (javax.mail.internet.ParseException pe) {
StringBuffer exceptionBuffer =
new StringBuffer(256)
.append("Invalid mail address in database: ")
.append(forwardingDestination)
.append(", for user ")
.append(username)
.append(".");
throw new RuntimeException(exceptionBuffer.toString());
}
}
// Build a DefaultJamesUser with these values, and add to the list.
DefaultJamesUser user = new DefaultJamesUser(username, pwdHash, pwdAlgorithm);
user.setForwarding(useForwarding);
user.setForwardingDestination(forwardAddress);
user.setAliasing(useAlias);
user.setAlias(alias);
return user;
| protected void | setUserForInsertStatement(org.apache.james.services.User user, java.sql.PreparedStatement userInsert)Set parameters of a PreparedStatement object with
property values from a User instance.
setUserForStatement(user, userInsert, false);
| private void | setUserForStatement(org.apache.james.services.User user, java.sql.PreparedStatement stmt, boolean userNameLast)Sets the data for the prepared statement to match the information
in the user object.
// Determine column offsets to use, based on username column pos.
int nameIndex = 1;
int colOffset = 1;
if ( userNameLast ) {
nameIndex = 7;
colOffset = 0;
}
// Can handle instances of DefaultJamesUser and DefaultUser.
DefaultJamesUser jamesUser;
if (user instanceof DefaultJamesUser) {
jamesUser = (DefaultJamesUser)user;
}
else if ( user instanceof DefaultUser ) {
DefaultUser aUser = (DefaultUser)user;
jamesUser = new DefaultJamesUser(aUser.getUserName(),
aUser.getHashedPassword(),
aUser.getHashAlgorithm());
}
// Can't handle any other implementations.
else {
throw new RuntimeException("An unknown implementation of User was " +
"found. This implementation cannot be " +
"persisted to a UsersJDBCRepsitory.");
}
// Get the user details to save.
stmt.setString(nameIndex, jamesUser.getUserName());
stmt.setString(1 + colOffset, jamesUser.getHashedPassword());
stmt.setString(2 + colOffset, jamesUser.getHashAlgorithm());
stmt.setInt(3 + colOffset, (jamesUser.getForwarding() ? 1 : 0));
MailAddress forwardAddress = jamesUser.getForwardingDestination();
String forwardDestination = null;
if ( forwardAddress != null ) {
forwardDestination = forwardAddress.toString();
}
stmt.setString(4 + colOffset, forwardDestination);
stmt.setInt(5 + colOffset, (jamesUser.getAliasing() ? 1 : 0));
stmt.setString(6 + colOffset, jamesUser.getAlias());
| protected void | setUserForUpdateStatement(org.apache.james.services.User user, java.sql.PreparedStatement userUpdate)Set parameters of a PreparedStatement object with
property values from a User instance.
setUserForStatement(user, userUpdate, true);
|
|