de.matrixweb.smaller.config.BuildServer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smaller-config Show documentation
Show all versions of smaller-config Show documentation
smaller-config is a unified config file format for smaller and smaller-dev-server.
The file format could be json or yaml.
package de.matrixweb.smaller.config;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* @author markusw
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class BuildServer {
@JsonProperty("output-only")
private boolean outputOnly = false;
private String[] environments;
/**
* @return the outputOnly
*/
public boolean isOutputOnly() {
return this.outputOnly;
}
/**
* @param outputOnly
* the outputOnly to set
*/
public void setOutputOnly(final boolean outputOnly) {
this.outputOnly = outputOnly;
}
/**
* @return the environments
*/
public String[] getEnvironments() {
return this.environments;
}
/**
* @param environments
* the environments to set
*/
public void setEnvironments(final String[] environments) {
this.environments = environments;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy