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

io.fabric8.docker.api.model.AuthConfig Maven / Gradle / Ivy

There is a newer version: 1.0.15
Show newest version

package io.fabric8.docker.api.model;

import java.io.Serializable;
import java.util.HashMap;
import java.util.Map;
import javax.annotation.Generated;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import io.sundr.builder.annotations.Buildable;
import io.sundr.builder.annotations.Inline;
import lombok.EqualsAndHashCode;
import lombok.ToString;


/**
 * 
 * 
 */
@JsonInclude(JsonInclude.Include.NON_NULL)
@Generated("org.jsonschema2pojo")
@JsonPropertyOrder({
    "auth",
    "email",
    "password",
    "serveraddress",
    "username"
})
@JsonDeserialize(using = com.fasterxml.jackson.databind.JsonDeserializer.None.class)
@ToString
@EqualsAndHashCode
@Buildable(editableEnabled = true, validationEnabled = true, generateBuilderPackage = true, builderPackage = "io.fabric8.docker.api.builder", inline = {
    @Inline(type = io.fabric8.docker.api.model.Doneable.class, prefix = "Doneable", value = "done"),
    @Inline(type = io.fabric8.docker.api.model.Doneable.class, returnType = Boolean.class, name = "InlineAuth", value = "done")
})
public class AuthConfig implements Serializable
{

    /**
     * 
     * 
     */
    @JsonProperty("auth")
    private String auth;
    /**
     * 
     * 
     */
    @JsonProperty("email")
    private String email;
    /**
     * 
     * 
     */
    @JsonProperty("password")
    private String password;
    /**
     * 
     * 
     */
    @JsonProperty("serveraddress")
    private String serveraddress;
    /**
     * 
     * 
     */
    @JsonProperty("username")
    private String username;
    @JsonIgnore
    private Map additionalProperties = new HashMap();

    /**
     * No args constructor for use in serialization
     * 
     */
    public AuthConfig() {
    }

    /**
     * 
     * @param serveraddress
     * @param password
     * @param auth
     * @param email
     * @param username
     */
    public AuthConfig(String auth, String email, String password, String serveraddress, String username) {
        this.auth = auth;
        this.email = email;
        this.password = password;
        this.serveraddress = serveraddress;
        this.username = username;
    }

    /**
     * 
     * 
     * @return
     *     The auth
     */
    @JsonProperty("auth")
    public String getAuth() {
        return auth;
    }

    /**
     * 
     * 
     * @param auth
     *     The auth
     */
    @JsonProperty("auth")
    public void setAuth(String auth) {
        this.auth = auth;
    }

    /**
     * 
     * 
     * @return
     *     The email
     */
    @JsonProperty("email")
    public String getEmail() {
        return email;
    }

    /**
     * 
     * 
     * @param email
     *     The email
     */
    @JsonProperty("email")
    public void setEmail(String email) {
        this.email = email;
    }

    /**
     * 
     * 
     * @return
     *     The password
     */
    @JsonProperty("password")
    public String getPassword() {
        return password;
    }

    /**
     * 
     * 
     * @param password
     *     The password
     */
    @JsonProperty("password")
    public void setPassword(String password) {
        this.password = password;
    }

    /**
     * 
     * 
     * @return
     *     The serveraddress
     */
    @JsonProperty("serveraddress")
    public String getServeraddress() {
        return serveraddress;
    }

    /**
     * 
     * 
     * @param serveraddress
     *     The serveraddress
     */
    @JsonProperty("serveraddress")
    public void setServeraddress(String serveraddress) {
        this.serveraddress = serveraddress;
    }

    /**
     * 
     * 
     * @return
     *     The username
     */
    @JsonProperty("username")
    public String getUsername() {
        return username;
    }

    /**
     * 
     * 
     * @param username
     *     The username
     */
    @JsonProperty("username")
    public void setUsername(String username) {
        this.username = username;
    }

    @JsonAnyGetter
    public Map getAdditionalProperties() {
        return this.additionalProperties;
    }

    @JsonAnySetter
    public void setAdditionalProperty(String name, Object value) {
        this.additionalProperties.put(name, value);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy