com.github.kongchen.swagger.docgen.reader.ClassSwaggerReader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swagger-maven-plugin Show documentation
Show all versions of swagger-maven-plugin Show documentation
A maven build plugin which helps you generate API document during build phase
The newest version!
package com.github.kongchen.swagger.docgen.reader;
import com.github.kongchen.swagger.docgen.GenerateException;
import io.swagger.models.Swagger;
import java.util.Set;
/**
* @author chekong on 15/4/28.
*/
public interface ClassSwaggerReader {
Swagger read(Set> classes) throws GenerateException;
}