BaseConnettoreHttp.java
/*
* GovWay - A customizable API Gateway
* https://govway.org
*
* Copyright (c) 2005-2024 Link.it srl (https://link.it).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3, as published by
* the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package org.openspcoop2.core.config.rs.server.model;
import javax.validation.constraints.*;
import io.swagger.v3.oas.annotations.media.Schema;
import com.fasterxml.jackson.annotation.JsonProperty;
import javax.validation.Valid;
public class BaseConnettoreHttp {
@Schema(example = "http://ente.it/servizio", required = true, description = "")
private String endpoint = null;
@Schema(description = "")
private ConnettoreConfigurazioneHttpBasic autenticazioneHttp = null;
@Schema(description = "")
private ConnettoreConfigurazioneApiKey autenticazioneApikey = null;
@Schema(description = "")
private ConnettoreConfigurazioneHttps autenticazioneHttps = null;
@Schema(description = "")
private ConnettoreConfigurazioneProxy proxy = null;
@Schema(description = "")
private ConnettoreConfigurazioneTimeout tempiRisposta = null;
@Schema(description = "")
private String tokenPolicy = null;
@Schema(description = "")
private Boolean debug = false;
/**
* Get endpoint
* @return endpoint
**/
@JsonProperty("endpoint")
@NotNull
@Valid
@Size(max=4000) public String getEndpoint() {
return this.endpoint;
}
public void setEndpoint(String endpoint) {
this.endpoint = endpoint;
}
public BaseConnettoreHttp endpoint(String endpoint) {
this.endpoint = endpoint;
return this;
}
/**
* Get autenticazioneHttp
* @return autenticazioneHttp
**/
@JsonProperty("autenticazione_http")
@Valid
public ConnettoreConfigurazioneHttpBasic getAutenticazioneHttp() {
return this.autenticazioneHttp;
}
public void setAutenticazioneHttp(ConnettoreConfigurazioneHttpBasic autenticazioneHttp) {
this.autenticazioneHttp = autenticazioneHttp;
}
public BaseConnettoreHttp autenticazioneHttp(ConnettoreConfigurazioneHttpBasic autenticazioneHttp) {
this.autenticazioneHttp = autenticazioneHttp;
return this;
}
/**
* Get autenticazioneApikey
* @return autenticazioneApikey
**/
@JsonProperty("autenticazione_apikey")
@Valid
public ConnettoreConfigurazioneApiKey getAutenticazioneApikey() {
return this.autenticazioneApikey;
}
public void setAutenticazioneApikey(ConnettoreConfigurazioneApiKey autenticazioneApikey) {
this.autenticazioneApikey = autenticazioneApikey;
}
public BaseConnettoreHttp autenticazioneApikey(ConnettoreConfigurazioneApiKey autenticazioneApikey) {
this.autenticazioneApikey = autenticazioneApikey;
return this;
}
/**
* Get autenticazioneHttps
* @return autenticazioneHttps
**/
@JsonProperty("autenticazione_https")
@Valid
public ConnettoreConfigurazioneHttps getAutenticazioneHttps() {
return this.autenticazioneHttps;
}
public void setAutenticazioneHttps(ConnettoreConfigurazioneHttps autenticazioneHttps) {
this.autenticazioneHttps = autenticazioneHttps;
}
public BaseConnettoreHttp autenticazioneHttps(ConnettoreConfigurazioneHttps autenticazioneHttps) {
this.autenticazioneHttps = autenticazioneHttps;
return this;
}
/**
* Get proxy
* @return proxy
**/
@JsonProperty("proxy")
@Valid
public ConnettoreConfigurazioneProxy getProxy() {
return this.proxy;
}
public void setProxy(ConnettoreConfigurazioneProxy proxy) {
this.proxy = proxy;
}
public BaseConnettoreHttp proxy(ConnettoreConfigurazioneProxy proxy) {
this.proxy = proxy;
return this;
}
/**
* Get tempiRisposta
* @return tempiRisposta
**/
@JsonProperty("tempi_risposta")
@Valid
public ConnettoreConfigurazioneTimeout getTempiRisposta() {
return this.tempiRisposta;
}
public void setTempiRisposta(ConnettoreConfigurazioneTimeout tempiRisposta) {
this.tempiRisposta = tempiRisposta;
}
public BaseConnettoreHttp tempiRisposta(ConnettoreConfigurazioneTimeout tempiRisposta) {
this.tempiRisposta = tempiRisposta;
return this;
}
/**
* Get tokenPolicy
* @return tokenPolicy
**/
@JsonProperty("token_policy")
@Valid
@Pattern(regexp="^[_A-Za-z][\\-\\._A-Za-z0-9]*$") @Size(max=255) public String getTokenPolicy() {
return this.tokenPolicy;
}
public void setTokenPolicy(String tokenPolicy) {
this.tokenPolicy = tokenPolicy;
}
public BaseConnettoreHttp tokenPolicy(String tokenPolicy) {
this.tokenPolicy = tokenPolicy;
return this;
}
/**
* Get debug
* @return debug
**/
@JsonProperty("debug")
@Valid
public Boolean isDebug() {
return this.debug;
}
public void setDebug(Boolean debug) {
this.debug = debug;
}
public BaseConnettoreHttp debug(Boolean debug) {
this.debug = debug;
return this;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class BaseConnettoreHttp {\n");
sb.append(" endpoint: ").append(BaseConnettoreHttp.toIndentedString(this.endpoint)).append("\n");
sb.append(" autenticazioneHttp: ").append(BaseConnettoreHttp.toIndentedString(this.autenticazioneHttp)).append("\n");
sb.append(" autenticazioneApikey: ").append(BaseConnettoreHttp.toIndentedString(this.autenticazioneApikey)).append("\n");
sb.append(" autenticazioneHttps: ").append(BaseConnettoreHttp.toIndentedString(this.autenticazioneHttps)).append("\n");
sb.append(" proxy: ").append(BaseConnettoreHttp.toIndentedString(this.proxy)).append("\n");
sb.append(" tempiRisposta: ").append(BaseConnettoreHttp.toIndentedString(this.tempiRisposta)).append("\n");
sb.append(" tokenPolicy: ").append(BaseConnettoreHttp.toIndentedString(this.tokenPolicy)).append("\n");
sb.append(" debug: ").append(BaseConnettoreHttp.toIndentedString(this.debug)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private static String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}