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-core Show documentation
Show all versions of jxls-core Show documentation
Small library for Excel generation based on XLS templates
The newest version!
package org.jxls.util;
/**
* {@link JxlsConfigProvider} based on java system properties
*/
public class JxlsConfigProviderImpl implements JxlsConfigProvider {
@Override
public String getProperty(String key, String defaultValue) {
return System.getProperty(key, defaultValue);
}
}