Class clazz = Class.forName(name);
this.authenticator = (CommentAuthenticator) clazz.newInstance();
} catch(Exception e) {
log.error(e);
this.authenticator = new DefaultCommentAuthenticator();
}
// are we doing throttling?
if(RollerConfig.getBooleanProperty("comment.throttle.enabled")) {