All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.jmchilton.blend4j.galaxy.beans.User Maven / Gradle / Ivy

Go to download

blend4j is a JVM partial reimplemenation of the Python library bioblend (http://bioblend.readthedocs.org/en/latest/) for interacting with Galaxy, CloudMan, and BioCloudCentral.

There is a newer version: 0.2.0
Show newest version
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