Constant.java 434 Bytes
package cn.com.polysoft.utils;

public class Constant {
	public static final String FILE_SUFFIX[] = { ".doc", ".docx", ".xls", ".xlsx", ".ppt", ".pptx", ".txt" };
	public static final String PDF_SUFFIX = ".pdf";
	public static final String OFFICE_HOME = "/opt/openoffice4";
	public static final int PORT = 8100;
	public static final long EXECUTE_OVERTIME = 2 * 60 * 1000;
	public static final long QUEUE_OVERTIME = 5 * 60 * 1000;


}