|
@@ -74,7 +74,7 @@ public class ConfigConstants {
|
|
|
public static final String DEFAULT_PROHIBIT = "exe,dll";
|
|
|
public static final String DEFAULT_PASSWORD = "123456";
|
|
|
public static final String DEFAULT_PDF2_JPG_DPI = "105";
|
|
|
- public static final String DEFAULT_OFFICE_TyPEWEB_DISABLE = "web";
|
|
|
+ public static final String DEFAULT_OFFICE_TYPE_WEB = "web";
|
|
|
public static final String DEFAULT_DELETE_SOURCE_FILE = "true";
|
|
|
|
|
|
public static Boolean isCacheEnabled() {
|
|
@@ -424,14 +424,14 @@ public class ConfigConstants {
|
|
|
ConfigConstants.pdf2JpgDpi = pdf2JpgDpi;
|
|
|
}
|
|
|
|
|
|
- public static String getofficeTypeWeb() {
|
|
|
+ public static String getOfficeTypeWeb() {
|
|
|
return officeTypeWeb;
|
|
|
}
|
|
|
@Value("${office.type.web:web}")
|
|
|
- public void setofficeTypeWeb(String officeTypeWeb) {
|
|
|
- setofficeTypeWebValue(officeTypeWeb);
|
|
|
+ public void setOfficeTypeWeb(String officeTypeWeb) {
|
|
|
+ setOfficeTypeWebValue(officeTypeWeb);
|
|
|
}
|
|
|
- public static void setofficeTypeWebValue(String officeTypeWeb) {
|
|
|
+ public static void setOfficeTypeWebValue(String officeTypeWeb) {
|
|
|
ConfigConstants.officeTypeWeb = officeTypeWeb;
|
|
|
}
|
|
|
|