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

io.fabric8.swagger.model.TokenRequestEndpoint Maven / Gradle / Ivy


package io.fabric8.swagger.model;

import java.net.URI;
import javax.annotation.Generated;
import javax.validation.constraints.NotNull;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import lombok.EqualsAndHashCode;
import lombok.ToString;

@JsonInclude(JsonInclude.Include.NON_NULL)
@Generated("org.jsonschema2pojo")
@JsonPropertyOrder({
    "url",
    "clientIdName",
    "clientSecretName"
})
@ToString
@EqualsAndHashCode
public class TokenRequestEndpoint {

    /**
     * 
     * (Required)
     * 
     */
    @JsonProperty("url")
    @NotNull
    private URI url;
    @JsonProperty("clientIdName")
    private String clientIdName;
    @JsonProperty("clientSecretName")
    private String clientSecretName;

    /**
     * 
     * (Required)
     * 
     * @return
     *     The url
     */
    @JsonProperty("url")
    public URI getUrl() {
        return url;
    }

    /**
     * 
     * (Required)
     * 
     * @param url
     *     The url
     */
    @JsonProperty("url")
    public void setUrl(URI url) {
        this.url = url;
    }

    /**
     * 
     * @return
     *     The clientIdName
     */
    @JsonProperty("clientIdName")
    public String getClientIdName() {
        return clientIdName;
    }

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

    /**
     * 
     * @return
     *     The clientSecretName
     */
    @JsonProperty("clientSecretName")
    public String getClientSecretName() {
        return clientSecretName;
    }

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy