com.strategicgains.restexpress.plugin.swagger.annotations.ApiModelRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of SwaggerPlugin Show documentation
Show all versions of SwaggerPlugin Show documentation
RESTExpress plugin for automatic Swagger documentation
package com.strategicgains.restexpress.plugin.swagger.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface ApiModelRequest
{
Class> model();
boolean required() default false;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy