io.apicurio.datamodels.openapi.v3.models.Oas30Parameter Maven / Gradle / Ivy
/*
* Copyright 2019 Red Hat
*
* 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.apicurio.datamodels.openapi.v3.models;
import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import io.apicurio.datamodels.core.models.common.IExampleParent;
import io.apicurio.datamodels.core.models.common.Schema;
import io.apicurio.datamodels.openapi.models.OasParameter;
/**
* Models an OpenAPI 3.0.x parameter.
* @author [email protected]
*/
public class Oas30Parameter extends OasParameter implements IOas30MediaTypeParent, IExampleParent {
public Boolean deprecated;
public String style; // matrix, label, form, simple, spaceDelimited, pipeDelimited, deepObject
public Boolean explode;
public Boolean allowReserved;
public Object example;
public Map examples = new LinkedHashMap<>();
public Map content = new LinkedHashMap<>();
/**
* Constructor.
*/
public Oas30Parameter() {
}
/**
* Constructor.
*/
public Oas30Parameter(String named) {
super(named);
}
/**
* @see io.apicurio.datamodels.core.models.common.Parameter#createSchema()
*/
@Override
public Schema createSchema() {
Schema schema = new Oas30Schema();
schema._ownerDocument = this.ownerDocument();
schema._parent = this;
return schema;
}
/**
* Creates a child Example model.
*/
public Oas30Example createExample(String name) {
Oas30Example rval = new Oas30Example(name);
rval._ownerDocument = this.ownerDocument();
rval._parent = this;
return rval;
}
/**
* Adds the Example to the map of examples.
* @param example
*/
public void addExample(Oas30Example example) {
this.examples.put(example.getName(), example);
}
/**
* Removes an Example and returns it.
* @param name
*/
public Oas30Example removeExample(String name) {
return this.examples.remove(name);
}
/**
* Gets a single example by name.
* @param name
*/
public Oas30Example getExample(String name) {
return this.examples.get(name);
}
/**
* Gets all examples.
*/
public List getExamples() {
List rval = new ArrayList<>();
rval.addAll(this.examples.values());
return rval;
}
/**
* @see io.apicurio.datamodels.openapi.v3.models.IOas30MediaTypeParent#createMediaType(java.lang.String)
*/
@Override
public Oas30MediaType createMediaType(String name) {
Oas30MediaType rval = new Oas30MediaType(name);
rval._ownerDocument = this.ownerDocument();
rval._parent = this;
return rval;
}
/**
* @see io.apicurio.datamodels.openapi.v3.models.IOas30MediaTypeParent#addMediaType(java.lang.String, io.apicurio.datamodels.openapi.v3.models.Oas30MediaType)
*/
@Override
public void addMediaType(String name, Oas30MediaType mediaType) {
this.content.put(name, mediaType);
}
/**
* @see io.apicurio.datamodels.openapi.v3.models.IOas30MediaTypeParent#getMediaType(java.lang.String)
*/
@Override
public Oas30MediaType getMediaType(String name) {
return this.content.get(name);
}
/**
* @see io.apicurio.datamodels.openapi.v3.models.IOas30MediaTypeParent#removeMediaType(java.lang.String)
*/
@Override
public Oas30MediaType removeMediaType(String name) {
return this.content.remove(name);
}
/**
* @see io.apicurio.datamodels.openapi.v3.models.IOas30MediaTypeParent#getMediaTypes()
*/
@Override
public List getMediaTypes() {
List rval = new ArrayList<>();
rval.addAll(this.content.values());
return rval;
}
}