org.jxls.util.JxlsConfigProviderImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jxls Show documentation
Show all versions of jxls Show documentation
Small library for Excel generation based on XLS templates
package org.jxls.util;
public class JxlsConfigProviderImpl implements JxlsConfigProvider {
public String getProperty(String key, String defaultValue) {
return System.getProperty(key, defaultValue);
}
}