this._categoryCode = categoryCode;
}
public long getMaximumSize() {
if (this._maximumSize<=0) {
ConfigInterface configManager = (ConfigInterface) ApsWebApplicationUtils.getBean(SystemConstants.BASE_CONFIG_MANAGER, ServletActionContext.getRequest());
String maxSizeParam = configManager.getParam(SystemConstants.PAR_FILEUPLOAD_MAXSIZE);
if (null != maxSizeParam) {
try {
this._maximumSize = Long.parseLong(maxSizeParam);
} catch (Throwable t) {
ApsSystemUtils.getLogger().error("Error parsing param 'maxSize' - value '" + maxSizeParam + "' - message " + t.getMessage());