com.github.jmchilton.blend4j.galaxy.beans.User 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.JsonIgnoreProperties;
import org.codehaus.jackson.annotate.JsonProperty;
@JsonIgnoreProperties(ignoreUnknown=true)
public class User extends GalaxyObject {
private String email;
private String username;
public String getEmail() {
return email;
}
public void setEmail(final String email) {
this.email = email;
}
@JsonProperty("nice_total_disk_usage")
public void setNiceTotalDiskUsage(final String niceTotalDiskUsage) {
}
@JsonProperty("total_disk_usage")
public void setTotalDiskUsage(final String totalDiskUsage) {
}
public void setUsername(final String username) {
this.username = username;
}
public String getUsername() {
return username;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy