Package com.apress.prospring.domain

Examples of com.apress.prospring.domain.BlogPosting


    public void before(Method method, Object[] args, Object target)
            throws Throwable {
        for (int x = 0; x < args.length; x++) {
            if (args[x] instanceof BlogPosting) {
                BlogPosting arg = (BlogPosting) args[x];
                if (filter.containsObscenities(arg.getBody())) {
                    arg.setBody(filter.obfuscateObscenities(arg.getBody()));
                }
                if (filter.containsObscenities(arg.getSubject())) {
                    arg.setSubject(filter
                            .obfuscateObscenities(arg.getSubject()));
                }
            }
        }
    }
View Full Code Here

TOP

Related Classes of com.apress.prospring.domain.BlogPosting

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.