com.github.jmchilton.blend4j.toolshed.ToolShedInstanceImpl 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.toolshed;
import com.github.jmchilton.blend4j.galaxy.WebResourceFactory;
class ToolShedInstanceImpl implements ToolShedInstance {
private WebResourceFactory webResourceFactory;
ToolShedInstanceImpl(final WebResourceFactory webResourceFactory) {
this.webResourceFactory = webResourceFactory;
}
public RepositoriesClient getRepositoriesClient() {
return new RepositoriesClientImpl(webResourceFactory);
}
public String getUrl() {
return webResourceFactory.getUrl();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy