Package org.apache.roller.weblogger.ui.rendering.plugins.comments

Examples of org.apache.roller.weblogger.ui.rendering.plugins.comments.DefaultCommentAuthenticator


            String name = WebloggerConfig.getProperty("comment.authenticator.classname");
            Class clazz = Class.forName(name);
            this.authenticator = (CommentAuthenticator) clazz.newInstance();
        } catch(Exception e) {
            log.error(e);
            this.authenticator = new DefaultCommentAuthenticator();
        }
       
        // instantiate a comment validation manager for comment spam checking
        commentValidationManager = new CommentValidationManager();
       
View Full Code Here


            String name = WebloggerConfig.getProperty("comment.authenticator.classname");
            Class clazz = Class.forName(name);
            this.authenticator = (CommentAuthenticator) clazz.newInstance();
        } catch(Exception e) {
            log.error(e);
            this.authenticator = new DefaultCommentAuthenticator();
        }
       
        // instantiate a comment validation manager for comment spam checking
        commentValidationManager = new CommentValidationManager();
       
View Full Code Here

            Class clazz = Class.forName(name);
            this.authenticator = (CommentAuthenticator) clazz.newInstance();
           
        } catch(Exception e) {
            mLogger.error(e);
            this.authenticator = new DefaultCommentAuthenticator();
        }

    }
View Full Code Here

TOP

Related Classes of org.apache.roller.weblogger.ui.rendering.plugins.comments.DefaultCommentAuthenticator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.