
com.haz4j.swagger.annotation.EnableSwagger4JsonRpc Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swagger4jsonrpc Show documentation
Show all versions of swagger4jsonrpc Show documentation
This project is implementation of swagger for JSON-RPC with Spring Boot.
It generates UI that helps delelopers test api and share it with colleagues
The newest version!
package com.haz4j.swagger.annotation;
import com.haz4j.swagger.config.SwaggerConfiguration;
import org.springframework.context.annotation.Import;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
@Retention(value = java.lang.annotation.RetentionPolicy.RUNTIME)
@Target(value = { java.lang.annotation.ElementType.TYPE })
@Documented
@Import({SwaggerConfiguration.class})
public @interface EnableSwagger4JsonRpc {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy