Examples of WafRuleDirective


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
Copyright © 2018 www.massapi.com. 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.