org.camunda.community.rest.client.dto.UserCredentialsDto Maven / Gradle / Ivy
The newest version!
/*
* Camunda Platform REST API
* OpenApi Spec for Camunda Platform REST API.
*
* The version of the OpenAPI document: 7.21.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package org.camunda.community.rest.client.dto;
import java.util.Objects;
import java.util.Arrays;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import org.openapitools.jackson.nullable.JsonNullable;
import com.fasterxml.jackson.annotation.JsonIgnore;
import org.openapitools.jackson.nullable.JsonNullable;
import java.util.NoSuchElementException;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import com.fasterxml.jackson.annotation.JsonTypeName;
import java.io.UnsupportedEncodingException;
import java.net.URLEncoder;
import java.util.StringJoiner;
/**
* UserCredentialsDto
*/
@JsonPropertyOrder({
UserCredentialsDto.JSON_PROPERTY_PASSWORD,
UserCredentialsDto.JSON_PROPERTY_AUTHENTICATED_USER_PASSWORD
})
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-06-27T13:50:23.655629899Z[Etc/UTC]")
public class UserCredentialsDto {
public static final String JSON_PROPERTY_PASSWORD = "password";
private JsonNullable password = JsonNullable.undefined();
public static final String JSON_PROPERTY_AUTHENTICATED_USER_PASSWORD = "authenticatedUserPassword";
private JsonNullable authenticatedUserPassword = JsonNullable.undefined();
public UserCredentialsDto() {
}
public UserCredentialsDto password(String password) {
this.password = JsonNullable.of(password);
return this;
}
/**
* The users new password.
* @return password
**/
@javax.annotation.Nullable
@JsonIgnore
public String getPassword() {
return password.orElse(null);
}
@JsonProperty(JSON_PROPERTY_PASSWORD)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public JsonNullable getPassword_JsonNullable() {
return password;
}
@JsonProperty(JSON_PROPERTY_PASSWORD)
public void setPassword_JsonNullable(JsonNullable password) {
this.password = password;
}
public void setPassword(String password) {
this.password = JsonNullable.of(password);
}
public UserCredentialsDto authenticatedUserPassword(String authenticatedUserPassword) {
this.authenticatedUserPassword = JsonNullable.of(authenticatedUserPassword);
return this;
}
/**
* The password of the authenticated user who changes the password of the user (i.e., the user with passed id as path parameter).
* @return authenticatedUserPassword
**/
@javax.annotation.Nullable
@JsonIgnore
public String getAuthenticatedUserPassword() {
return authenticatedUserPassword.orElse(null);
}
@JsonProperty(JSON_PROPERTY_AUTHENTICATED_USER_PASSWORD)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public JsonNullable getAuthenticatedUserPassword_JsonNullable() {
return authenticatedUserPassword;
}
@JsonProperty(JSON_PROPERTY_AUTHENTICATED_USER_PASSWORD)
public void setAuthenticatedUserPassword_JsonNullable(JsonNullable authenticatedUserPassword) {
this.authenticatedUserPassword = authenticatedUserPassword;
}
public void setAuthenticatedUserPassword(String authenticatedUserPassword) {
this.authenticatedUserPassword = JsonNullable.of(authenticatedUserPassword);
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
UserCredentialsDto userCredentialsDto = (UserCredentialsDto) o;
return equalsNullable(this.password, userCredentialsDto.password) &&
equalsNullable(this.authenticatedUserPassword, userCredentialsDto.authenticatedUserPassword);
}
private static boolean equalsNullable(JsonNullable a, JsonNullable b) {
return a == b || (a != null && b != null && a.isPresent() && b.isPresent() && Objects.deepEquals(a.get(), b.get()));
}
@Override
public int hashCode() {
return Objects.hash(hashCodeNullable(password), hashCodeNullable(authenticatedUserPassword));
}
private static int hashCodeNullable(JsonNullable a) {
if (a == null) {
return 1;
}
return a.isPresent() ? Arrays.deepHashCode(new Object[]{a.get()}) : 31;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class UserCredentialsDto {\n");
sb.append(" password: ").append(toIndentedString(password)).append("\n");
sb.append(" authenticatedUserPassword: ").append(toIndentedString(authenticatedUserPassword)).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 String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
/**
* Convert the instance into URL query string.
*
* @return URL query string
*/
public String toUrlQueryString() {
return toUrlQueryString(null);
}
/**
* Convert the instance into URL query string.
*
* @param prefix prefix of the query string
* @return URL query string
*/
public String toUrlQueryString(String prefix) {
String suffix = "";
String containerSuffix = "";
String containerPrefix = "";
if (prefix == null) {
// style=form, explode=true, e.g. /pet?name=cat&type=manx
prefix = "";
} else {
// deepObject style e.g. /pet?id[name]=cat&id[type]=manx
prefix = prefix + "[";
suffix = "]";
containerSuffix = "]";
containerPrefix = "[";
}
StringJoiner joiner = new StringJoiner("&");
// add `password` to the URL query string
if (getPassword() != null) {
try {
joiner.add(String.format("%spassword%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getPassword()), "UTF-8").replaceAll("\\+", "%20")));
} catch (UnsupportedEncodingException e) {
// Should never happen, UTF-8 is always supported
throw new RuntimeException(e);
}
}
// add `authenticatedUserPassword` to the URL query string
if (getAuthenticatedUserPassword() != null) {
try {
joiner.add(String.format("%sauthenticatedUserPassword%s=%s", prefix, suffix, URLEncoder.encode(String.valueOf(getAuthenticatedUserPassword()), "UTF-8").replaceAll("\\+", "%20")));
} catch (UnsupportedEncodingException e) {
// Should never happen, UTF-8 is always supported
throw new RuntimeException(e);
}
}
return joiner.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy