io.swagger.v3.oas.models.media.Encoding Maven / Gradle / Ivy
/**
* Copyright 2017 SmartBear Software
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.swagger.v3.oas.models.media;
import io.swagger.v3.oas.models.headers.Header;
import java.util.Map;
import java.util.Objects;
/**
* Encoding
*
* @see "https://github.com/OAI/OpenAPI-Specification/blob/3.0.1/versions/3.0.1.md#encodingObject"
*/
public class Encoding {
private String contentType;
private Map headers;
private StyleEnum style;
private Boolean explode;
private Boolean allowReserved;
private java.util.Map extensions = null;
public enum StyleEnum {
FORM("form"),
SPACE_DELIMITED("spaceDelimited"),
PIPE_DELIMITED("pipeDelimited"),
DEEP_OBJECT("deepObject");
private String value;
StyleEnum(String value) {
this.value = value;
}
@Override
public String toString() {
return String.valueOf(value);
}
}
public Encoding() {
}
public Encoding contentType(String contentType) {
this.contentType = contentType;
return this;
}
public String getContentType() {
return contentType;
}
public void setContentType(String contentType) {
this.contentType = contentType;
}
public Encoding headers(Map headers) {
this.headers = headers;
return this;
}
public Map getHeaders() {
return headers;
}
public void setHeaders(Map headers) {
this.headers = headers;
}
public Encoding style(StyleEnum style) {
this.style = style;
return this;
}
public StyleEnum getStyle() {
return style;
}
public void setStyle(StyleEnum style) {
this.style = style;
}
public Encoding explode(Boolean explode) {
this.explode = explode;
return this;
}
public Boolean getExplode() {
return explode;
}
public void setExplode(Boolean explode) {
this.explode = explode;
}
public Encoding allowReserved(Boolean allowReserved) {
this.allowReserved = allowReserved;
return this;
}
public Boolean getAllowReserved() {
return allowReserved;
}
public void setAllowReserved(Boolean allowReserved) {
this.allowReserved = allowReserved;
}
public java.util.Map getExtensions() {
return extensions;
}
public void addExtension(String name, Object value) {
if (name == null || name.isEmpty() || !name.startsWith("x-")) {
return;
}
if (this.extensions == null) {
this.extensions = new java.util.LinkedHashMap<>();
}
this.extensions.put(name, value);
}
public void setExtensions(java.util.Map extensions) {
this.extensions = extensions;
}
public Encoding extensions(java.util.Map extensions) {
this.extensions = extensions;
return this;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Encoding encoding = (Encoding) o;
return Objects.equals(this.contentType, encoding.contentType) &&
Objects.equals(this.headers, encoding.headers) &&
Objects.equals(this.style, encoding.style) &&
Objects.equals(this.explode, encoding.explode) &&
Objects.equals(this.extensions, encoding.extensions) &&
Objects.equals(this.allowReserved, encoding.allowReserved);
}
@Override
public int hashCode() {
return Objects.hash(contentType, headers, style, explode, allowReserved, extensions);
}
@Override
public String toString() {
return "Encoding{" +
"contentType='" + contentType + '\'' +
", headers=" + headers +
", style='" + style + '\'' +
", explode=" + explode +
", allowReserved=" + allowReserved +
", extensions=" + extensions +
'}';
}
}