Package com.denimgroup.threadfix.data.entities

Examples of com.denimgroup.threadfix.data.entities.WafRuleDirective


            wafTypeDao.saveOrUpdate(type);
        }
    }

    private void processRule(WafType type, String trimmedLine) {
        WafRuleDirective wafRuleDirective = wafRuleDirectiveDao.retrieveByWafTypeIdAndDirective(type, trimmedLine);

        if (wafRuleDirective == null) {
            WafRuleDirective directive = new WafRuleDirective();
            directive.setWafType(type);
            directive.setDirective(trimmedLine);
            type.getWafRuleDirectives().add(directive);
            wafRuleDirectiveDao.saveOrUpdate(directive);
        }
    }
View Full Code Here

TOP

Related Classes of com.denimgroup.threadfix.data.entities.WafRuleDirective

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.