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

nl.tweeenveertig.openstack.command.identity.access.User Maven / Gradle / Ivy

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy