com.sinch.sdk.domains.verification.models.v1.internal.IdentityInternalImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sinch-sdk-java Show documentation
Show all versions of sinch-sdk-java Show documentation
SDK providing a Java API for the Sinch REST APIs.
package com.sinch.sdk.domains.verification.models.v1.internal;
import com.fasterxml.jackson.annotation.JsonFilter;
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.JsonPOJOBuilder;
import com.sinch.sdk.core.models.OptionalValue;
import java.util.Objects;
@JsonPropertyOrder({
IdentityInternalImpl.JSON_PROPERTY_TYPE,
IdentityInternalImpl.JSON_PROPERTY_ENDPOINT
})
@JsonFilter("uninitializedFilter")
@JsonInclude(value = JsonInclude.Include.CUSTOM)
public class IdentityInternalImpl implements IdentityInternal {
private static final long serialVersionUID = 1L;
public static final String JSON_PROPERTY_TYPE = "type";
private OptionalValue type;
public static final String JSON_PROPERTY_ENDPOINT = "endpoint";
private OptionalValue endpoint;
public IdentityInternalImpl() {}
protected IdentityInternalImpl(OptionalValue type, OptionalValue endpoint) {
this.type = type;
this.endpoint = endpoint;
}
@JsonIgnore
public TypeEnum getType() {
return type.orElse(null);
}
@JsonProperty(JSON_PROPERTY_TYPE)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public OptionalValue type() {
return type;
}
@JsonIgnore
public String getEndpoint() {
return endpoint.orElse(null);
}
@JsonProperty(JSON_PROPERTY_ENDPOINT)
@JsonInclude(value = JsonInclude.Include.ALWAYS)
public OptionalValue endpoint() {
return endpoint;
}
/** Return true if this Identity object is equal to o. */
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
IdentityInternalImpl identity = (IdentityInternalImpl) o;
return Objects.equals(this.type, identity.type)
&& Objects.equals(this.endpoint, identity.endpoint);
}
@Override
public int hashCode() {
return Objects.hash(type, endpoint);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class IdentityInternalImpl {\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append(" endpoint: ").append(toIndentedString(endpoint)).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 ");
}
@JsonPOJOBuilder(withPrefix = "set")
static class Builder implements IdentityInternal.Builder {
OptionalValue type = OptionalValue.empty();
OptionalValue endpoint = OptionalValue.empty();
@JsonProperty(JSON_PROPERTY_TYPE)
public Builder setType(TypeEnum type) {
this.type = OptionalValue.of(type);
return this;
}
@JsonProperty(JSON_PROPERTY_ENDPOINT)
public Builder setEndpoint(String endpoint) {
this.endpoint = OptionalValue.of(endpoint);
return this;
}
public IdentityInternal build() {
return new IdentityInternalImpl(type, endpoint);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy