All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.swagger.v3.oas.models.headers.Header Maven / Gradle / Ivy

There is a newer version: 1.2.2.1-jre17
Show newest version
/**
 * 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.headers; import io.swagger.v3.oas.models.examples.Example; import io.swagger.v3.oas.models.media.Content; import io.swagger.v3.oas.models.media.Schema; import java.util.LinkedHashMap; import java.util.Map; import java.util.Objects; /** * Header * * @see "https://github.com/OAI/OpenAPI-Specification/blob/3.0.1/versions/3.0.1.md#headerObject" */ public class Header { private String description = null; private String $ref = null; private Boolean required = null; private Boolean deprecated = null; /** * Gets or Sets style */ public enum StyleEnum { SIMPLE("simple"); private String value; StyleEnum(String value) { this.value = value; } @Override public String toString() { return String.valueOf(value); } } private StyleEnum style = null; private Boolean explode = null; private Schema schema = null; private Map examples = null; private Object example = null; private Content content = null; private java.util.Map extensions = null; /** * returns the description property from a Header instance. * * @return String description **/ public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public Header description(String description) { this.description = description; return this; } /** * returns the required property from a Header instance. * * @return Boolean required **/ public Boolean getRequired() { return required; } public void setRequired(Boolean required) { this.required = required; } public Header required(Boolean required) { this.required = required; return this; } /** * returns the deprecated property from a Header instance. * * @return Boolean deprecated **/ public Boolean getDeprecated() { return deprecated; } public void setDeprecated(Boolean deprecated) { this.deprecated = deprecated; } public Header deprecated(Boolean deprecated) { this.deprecated = deprecated; return this; } /** * returns the style property from a Header instance. * * @return StyleEnum style **/ public StyleEnum getStyle() { return style; } public void setStyle(StyleEnum style) { this.style = style; } public Header style(StyleEnum style) { this.style = style; return this; } /** * returns the explode property from a Header instance. * * @return Boolean explode **/ public Boolean getExplode() { return explode; } public void setExplode(Boolean explode) { this.explode = explode; } public Header explode(Boolean explode) { this.explode = explode; return this; } /** * returns the schema property from a Header instance. * * @return Schema schema **/ public Schema getSchema() { return schema; } public void setSchema(Schema schema) { this.schema = schema; } public Header schema(Schema schema) { this.schema = schema; return this; } /** * returns the examples property from a Header instance. * * @return Map<String, Example> examples **/ public Map getExamples() { return examples; } public void setExamples(Map examples) { this.examples = examples; } public Header examples(Map examples) { this.examples = examples; return this; } public Header addExample(String key, Example examplesItem) { if (this.examples == null) { this.examples = new LinkedHashMap<>(); } this.examples.put(key, examplesItem); return this; } /** * returns the example property from a Header instance. * * @return String example **/ public Object getExample() { return example; } public void setExample(Object example) { this.example = example; } public Header example(Object example) { this.example = example; return this; } /** * returns the content property from a Header instance. * * @return Content content **/ public Content getContent() { return content; } public void setContent(Content content) { this.content = content; } public Header content(Content content) { this.content = content; return this; } @Override public boolean equals(java.lang.Object o) { if (this == o) { return true; } if (o == null || getClass() != o.getClass()) { return false; } Header header = (Header) o; return Objects.equals(this.description, header.description) && Objects.equals(this.required, header.required) && Objects.equals(this.deprecated, header.deprecated) && Objects.equals(this.style, header.style) && Objects.equals(this.explode, header.explode) && Objects.equals(this.schema, header.schema) && Objects.equals(this.examples, header.examples) && Objects.equals(this.example, header.example) && Objects.equals(this.content, header.content) && Objects.equals(this.extensions, header.extensions) && Objects.equals(this.$ref, header.$ref); } @Override public int hashCode() { return Objects.hash(description, required, deprecated, style, explode, schema, examples, example, content, extensions, $ref); } 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 Header extensions(java.util.Map extensions) { this.extensions = extensions; return this; } public String get$ref() { return $ref; } public void set$ref(String $ref) { if ($ref != null && ($ref.indexOf('.') == -1 && $ref.indexOf('/') == -1)) { $ref = "#/components/headers/" + $ref; } this.$ref = $ref; } public Header $ref(String $ref) { set$ref($ref); return this; } @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("class Header {\n"); sb.append(" description: ").append(toIndentedString(description)).append("\n"); sb.append(" required: ").append(toIndentedString(required)).append("\n"); sb.append(" deprecated: ").append(toIndentedString(deprecated)).append("\n"); sb.append(" style: ").append(toIndentedString(style)).append("\n"); sb.append(" explode: ").append(toIndentedString(explode)).append("\n"); sb.append(" schema: ").append(toIndentedString(schema)).append("\n"); sb.append(" examples: ").append(toIndentedString(examples)).append("\n"); sb.append(" example: ").append(toIndentedString(example)).append("\n"); sb.append(" content: ").append(toIndentedString(content)).append("\n"); sb.append(" $ref: ").append(toIndentedString($ref)).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(java.lang.Object o) { if (o == null) { return "null"; } return o.toString().replace("\n", "\n "); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy