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

io.swagger.converter.ModelConverterContext Maven / Gradle / Ivy

The newest version!
package io.swagger.converter;

import io.swagger.oas.models.media.Schema;

import java.lang.annotation.Annotation;
import java.lang.reflect.Type;
import java.util.Iterator;

public interface ModelConverterContext {

    /**
     * needs to be called whenever a Model is defined which can be referenced from another
     * Model or Property
     *
     * @param name  the name of the model
     * @param model the Model
     */
    public void defineModel(String name, Schema model);

    /**
     * needs to be called whenever a Schema is defined which can be referenced from another
     * Model or Property
     *
     * @param name     the name of the model
     * @param model    the Model
     * @param type     the Type
     * @param prevName the (optional) previous name
     */
    public void defineModel(String name, Schema model, Type type, String prevName);

    /**
     * @param type The Schema
     * @return a Model representation of the Class. Any referenced models will be defined already.
     */
    public Schema resolve(Type type);

    public Schema resolve(Type type, Annotation[] annotations);

    /**
     * @return an Iterator of ModelConverters.  This iterator is not reused
     */
    public Iterator getConverters();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy