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

io.swagger.jaxrs2.ext.OpenAPIExtension Maven / Gradle / Ivy

The newest version!
package io.swagger.jaxrs2.ext;

import io.swagger.oas.models.Operation;
import io.swagger.oas.models.parameters.Parameter;

import java.lang.annotation.Annotation;
import java.lang.reflect.Method;
import java.lang.reflect.Type;
import java.util.Iterator;
import java.util.List;
import java.util.Set;

public interface OpenAPIExtension {

    String extractOperationMethod(Operation apiOperation, Method method, Iterator chain);

    List extractParameters(List annotations, Type type, Set typesToSkip, Iterator chain);

    /**
     * Decorates operation with additional vendor based extensions.
     *
     * @param operation the operation, build from swagger definition
     * @param method the method for additional scan
     * @param chain the chain with swagger extensions to process
     */
    void decorateOperation(Operation operation, Method method, Iterator chain);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy