org.openapi4j.parser.model.v3.AbsParameter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-parser Show documentation
Show all versions of openapi-parser Show documentation
openapi4j schema parser & validator
package org.openapi4j.parser.model.v3;
import com.fasterxml.jackson.annotation.JsonProperty;
import org.openapi4j.parser.model.OpenApiSchema;
import java.util.HashMap;
import java.util.Map;
public abstract class AbsParameter> extends AbsExtendedRefOpenApiSchema {
private Boolean allowReserved;
@JsonProperty("content")
private Map contentMediaTypes;
private Boolean deprecated;
private String description;
private Object example;
private Map examples;
private Boolean explode;
private Boolean required;
private Schema schema;
private String style;
// Description
public String getDescription() {
return description;
}
public AbsParameter setDescription(String description) {
this.description = description;
return this;
}
// Required
public Boolean getRequired() {
return required;
}
public boolean isRequired() {
return Boolean.TRUE.equals(required);
}
public AbsParameter setRequired(Boolean required) {
this.required = required;
return this;
}
// Deprecated
public Boolean getDeprecated() {
return deprecated;
}
public boolean isDeprecated() {
return Boolean.TRUE.equals(deprecated);
}
public AbsParameter setDeprecated(Boolean deprecated) {
this.deprecated = deprecated;
return this;
}
// Style
public String getStyle() {
return style;
}
public AbsParameter setStyle(String style) {
this.style = style;
return this;
}
// Explode
public Boolean getExplode() {
return explode;
}
public boolean isExplode() {
return Boolean.TRUE.equals(explode);
}
public AbsParameter setExplode(Boolean explode) {
this.explode = explode;
return this;
}
// AllowReserved
public Boolean getAllowReserved() {
return allowReserved;
}
public boolean isAllowReserved() {
return Boolean.TRUE.equals(allowReserved);
}
public AbsParameter setAllowReserved(Boolean allowReserved) {
this.allowReserved = allowReserved;
return this;
}
// Schema
public Schema getSchema() {
return schema;
}
public AbsParameter setSchema(Schema schema) {
this.schema = schema;
return this;
}
// Example
public Object getExample() {
return example;
}
public AbsParameter setExample(Object example) {
this.example = example;
return this;
}
// Example
public Map getExamples() {
return examples;
}
public AbsParameter setExamples(Map examples) {
this.examples = examples;
return this;
}
public boolean hasExample(String name) {
return mapHas(examples, name);
}
public Example getExample(String name) {
return mapGet(examples, name);
}
public AbsParameter setExample(String name, Example example) {
if (examples == null) {
examples = new HashMap<>();
}
examples.put(name, example);
return this;
}
public AbsParameter removeExample(String name) {
mapRemove(examples, name);
return this;
}
// ContentMediaType
public Map getContentMediaTypes() {
return contentMediaTypes;
}
public AbsParameter setContentMediaTypes(Map contentMediaTypes) {
this.contentMediaTypes = contentMediaTypes;
return this;
}
public boolean hasContentMediaType(String name) {
return mapHas(contentMediaTypes, name);
}
public MediaType getContentMediaType(String name) {
return mapGet(contentMediaTypes, name);
}
public AbsParameter setContentMediaType(String name, MediaType contentMediaType) {
if (contentMediaTypes == null) {
contentMediaTypes = new HashMap<>();
}
contentMediaTypes.put(name, contentMediaType);
return this;
}
public AbsParameter removeContentMediaType(String name) {
mapRemove(contentMediaTypes, name);
return this;
}
void copy(AbsParameter copy) {
copy.setDescription(getDescription());
copy.setRequired(getRequired());
copy.setDeprecated(getDeprecated());
copy.setStyle(getStyle());
copy.setExplode(getExplode());
copy.setAllowReserved(getAllowReserved());
copy.setSchema(copyField(getSchema()));
copy.setExample(getExample());
copy.setExamples(copyMap(getExamples()));
copy.setContentMediaTypes(getContentMediaTypes());
copy.setExtensions(copySimpleMap(getExtensions()));
}
}