xmlFile = new XmlFile(XmlFileUtil.lookupCharset(configuration), directory);
}
@Override
public UserProfile getUserProfile(final String userName) {
final UserProfileDataHandler handler = new UserProfileDataHandler();
if (xmlFile.parse(handler, userName)) {
return handler.getUserProfile();
} else {
return null;
}
}