/src/main/java/com/drools/core/common/Constants.java
https://github.com/hongwen1993/fast-drools-spring-boot-starter · Java · 41 lines · 9 code · 7 blank · 25 comment · 0 complexity · 961d5c8a91aee15f9de11cc4e6ee102c MD5 · raw file
- package com.drools.core.common;
- /**
- * 基础常量
- *
- * @author <a href="mailto:hongwen0928@outlook.com">Karas</a>
- * @date 2020/3/10
- * @since 1.0.0
- */
- public class Constants {
- /**
- * 规则文件后缀
- */
- public static final String SUFFIX_DRL = "drl";
- /**
- * 决策表后缀 excel 97-03版本的后缀 drools同样支持
- */
- public static final String SUFFIX_EXCEL = "xls";
-
- /**
- * 决策表后缀 excel 2007版本以后的后缀 drools同样支持
- */
- public static final String SUFFIX_EXCEL_2007 = "xlsx";
- /**
- * CSV后缀
- */
- public static final String SUFFIX_CSV = "csv";
- /**
- * 开启监听器的标识符
- */
- public static final String LISTENER_OPEN = "on";
- /**
- * 关闭监听器的标识符
- */
- public static final String LISTENER_CLOSE = "off";
- }