AuthenticationHttpBasic.java
- /*
- * GovWay - A customizable API Gateway
- * https://govway.org
- *
- * Copyright (c) 2005-2025 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 AuthenticationHttpBasic implements OneOfBaseCredenzialiCredenziali {
-
- @Schema(required = true, description = "")
- private ModalitaAccessoEnum modalitaAccesso = null;
-
- @Schema(example = "user", required = true, description = "")
- private String username = null;
-
- @Schema(example = "pwd", description = "")
- private String password = null;
- /**
- * Get modalitaAccesso
- * @return modalitaAccesso
- **/
- @Override
- @JsonProperty("modalita_accesso")
- @NotNull
- @Valid
- public ModalitaAccessoEnum getModalitaAccesso() {
- return this.modalitaAccesso;
- }
- public void setModalitaAccesso(ModalitaAccessoEnum modalitaAccesso) {
- this.modalitaAccesso = modalitaAccesso;
- }
- public AuthenticationHttpBasic modalitaAccesso(ModalitaAccessoEnum modalitaAccesso) {
- this.modalitaAccesso = modalitaAccesso;
- return this;
- }
- /**
- * Get username
- * @return username
- **/
- @JsonProperty("username")
- @NotNull
- @Valid
- @Size(max=2800) public String getUsername() {
- return this.username;
- }
- public void setUsername(String username) {
- this.username = username;
- }
- public AuthenticationHttpBasic username(String username) {
- this.username = username;
- return this;
- }
- /**
- * Get password
- * @return password
- **/
- @JsonProperty("password")
- @Valid
- public String getPassword() {
- return this.password;
- }
- public void setPassword(String password) {
- this.password = password;
- }
- public AuthenticationHttpBasic password(String password) {
- this.password = password;
- return this;
- }
- @Override
- public String toString() {
- StringBuilder sb = new StringBuilder();
- sb.append("class AuthenticationHttpBasic {\n");
-
- sb.append(" modalitaAccesso: ").append(AuthenticationHttpBasic.toIndentedString(this.modalitaAccesso)).append("\n");
- sb.append(" username: ").append(AuthenticationHttpBasic.toIndentedString(this.username)).append("\n");
- sb.append(" password: ").append(AuthenticationHttpBasic.toIndentedString(this.password)).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 ");
- }
- }