![JAR search and dependency download from the Maven repository](/logo.png)
info.kwarc.sally4.mhw.base.BuildWorkflowConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mhw-base Show documentation
Show all versions of mhw-base Show documentation
Implements the interaction of assigning a MathHub document to a Worker.
The newest version!
package info.kwarc.sally4.mhw.base;
import java.util.HashMap;
public class BuildWorkflowConfig {
String buildWorkflowId;
HashMap parameters;
public BuildWorkflowConfig() {
parameters = new HashMap();
}
public String getBuildWorkflowId() {
return buildWorkflowId;
}
public HashMap getParameters() {
return parameters;
}
public BuildWorkflowConfig setBuildWorkflowId(String buildWorkflowId) {
this.buildWorkflowId = buildWorkflowId;
return this;
}
public BuildWorkflowConfig setParameters(HashMap parameters) {
this.parameters = parameters;
return this;
}
public BuildWorkflowConfig setParameter(String paramId, String value) {
this.parameters.put(paramId, value);
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy