PropertiesUtil.java
435 Bytes
/**
*
*/
package com.yoho.unions.utils;
import com.yoho.unions.common.constant.Constant;
/**
* 描述:
*
* @author ping.huang
* 2016年3月8日
*/
public class PropertiesUtil {
/**
* 获取定时任务是否执行的配置值
* @return
*/
public static boolean getExecuteTask() {
return Constant.EXECUTE_TASK;
}
public static void setExecuteTaskValue(boolean value) {
Constant.EXECUTE_TASK = value;
}
}