
nl.tweeenveertig.openstack.command.identity.access.User Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of joss Show documentation
Show all versions of joss Show documentation
Java Client library for OpenStack Storage (Swift)
package nl.tweeenveertig.openstack.command.identity.access;
import org.codehaus.jackson.annotate.JsonIgnoreProperties;
import java.util.ArrayList;
import java.util.List;
@JsonIgnoreProperties(ignoreUnknown = true)
public class User {
public String username;
// @JsonProperty(value = "roles_links")
// public List rolesLinks = new ArrayList();
public String id;
public List roles = new ArrayList();
public String name;
}