com.github.jmchilton.blend4j.galaxy.beans.RepositoryInstall Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of blend4j Show documentation
Show all versions of blend4j Show documentation
blend4j is a JVM partial reimplemenation of the Python library bioblend (http://bioblend.readthedocs.org/en/latest/) for interacting with Galaxy, CloudMan, and BioCloudCentral.
package com.github.jmchilton.blend4j.galaxy.beans;
import org.codehaus.jackson.annotate.JsonProperty;
public class RepositoryInstall extends InstallableRepositoryRevision {
@JsonProperty("new_tool_panel_section_label")
private String newToolPanelSectionLabel = "";
@JsonProperty("tool_panel_section_id")
private String toolPanelSectionId = "";
@JsonProperty("install_repository_dependencies")
private boolean installRepositoryDependencies = false;
@JsonProperty("install_tool_dependencies")
private boolean installToolDependencies = false;
public RepositoryInstall() {
super();
}
public RepositoryInstall(final InstallableRepositoryRevision revision) {
super(revision);
}
public String getNewToolPanelSectionLabel() {
return newToolPanelSectionLabel;
}
public void setNewToolPanelSectionLabel(String newToolPanelSectionLabel) {
this.newToolPanelSectionLabel = newToolPanelSectionLabel;
}
public String getToolPanelSectionId() {
return toolPanelSectionId;
}
public void setToolPanelSectionId(String toolPanelSectionId) {
this.toolPanelSectionId = toolPanelSectionId;
}
public boolean isInstallRepositoryDependencies() {
return installRepositoryDependencies;
}
public void setInstallRepositoryDependencies(boolean installRepositoryDependencies) {
this.installRepositoryDependencies = installRepositoryDependencies;
}
public boolean isInstallToolDependencies() {
return installToolDependencies;
}
public void setInstallToolDependencies(boolean installToolDependencies) {
this.installToolDependencies = installToolDependencies;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy