org.openapi4j.parser.model.v3.Response 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 java.util.HashMap;
import java.util.Map;
@SuppressWarnings({"unused", "UnusedReturnValue"})
public class Response extends AbsExtendedRefOpenApiSchema {
private String description;
private Map headers;
@JsonProperty("content")
private Map contentMediaTypes;
private Map links;
// Description
public String getDescription() {
return description;
}
public Response setDescription(String description) {
this.description = description;
return this;
}
// Header
public Map getHeaders() {
return headers;
}
public Response setHeaders(Map headers) {
this.headers = headers;
return this;
}
public boolean hasHeader(String name) {
return mapHas(headers, name);
}
public Header getHeader(String name) {
return mapGet(headers, name);
}
public Response setHeader(String name, Header header) {
if (headers == null) {
headers = new HashMap<>();
}
headers.put(name, header);
return this;
}
public Response removeHeader(String name) {
mapRemove(headers, name);
return this;
}
// ContentMediaType
public Map getContentMediaTypes() {
return contentMediaTypes;
}
public Response 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 Response setContentMediaType(String name, MediaType contentMediaType) {
if (contentMediaTypes == null) {
contentMediaTypes = new HashMap<>();
}
contentMediaTypes.put(name, contentMediaType);
return this;
}
public Response removeContentMediaType(String name) {
mapRemove(contentMediaTypes, name);
return this;
}
// Link
public Map getLinks() {
return links;
}
public Response setLinks(Map links) {
this.links = links;
return this;
}
public boolean hasLink(String name) {
return mapHas(links, name);
}
public Link getLink(String name) {
return mapGet(links, name);
}
public Response setLink(String name, Link link) {
if (links == null) {
links = new HashMap<>();
}
links.put(name, link);
return this;
}
public Response removeLink(String name) {
mapRemove(links, name);
return this;
}
@Override
public Response copy() {
Response copy = new Response();
if (isRef()) {
copy.setRef(getRef());
copy.setCanonicalRef(getCanonicalRef());
} else {
copy.setDescription(getDescription());
copy.setHeaders(copyMap(getHeaders()));
copy.setContentMediaTypes(copyMap(getContentMediaTypes()));
copy.setLinks(copyMap(getLinks()));
copy.setExtensions(copySimpleMap(getExtensions()));
}
return copy;
}
}