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

com.quali.cloudshell.api.User Maven / Gradle / Ivy

The newest version!
package com.quali.cloudshell.api;

import com.fasterxml.jackson.annotation.JsonProperty;

import java.io.Serializable;

public class User implements Serializable {

    public User(String username, String password, String domain){
        this.username = username;
        this.password= password;
        this.domain = domain;
    }

    @JsonProperty("username")
    public String username;
    @JsonProperty("password")
    public String password;
    @JsonProperty("domain")
    public String domain;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy