// We're good, indicate that they're not locked out.
return null;
}
else {
// Creates the lock out flag
return new LockOutFlag(username, null, null);
}
}
catch (Exception e) {
// Hrm. This is not good. We have to opt on the side of positive.
Log.error("Error while looking up user's disabled status from Clearspace: ", e);