io.qase.commons.config.LocalConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qase-java-commons Show documentation
Show all versions of qase-java-commons Show documentation
Qase TMS Reporter's common classes
The newest version!
package io.qase.commons.config;
public class LocalConfig {
public Format format = Format.JSON;
public String path = "./build/qase-report";
public void setFormat(String format) {
try {
this.format = Format.valueOf(format.toUpperCase());
} catch (IllegalArgumentException e) {
this.format = Format.JSON;
}
}
public String getFormat() {
return format.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy