com.minlia.cloud.annotation.Endpoint Maven / Gradle / Ivy
package com.minlia.cloud.annotation;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import java.lang.annotation.*;
/**
* Created by will on 8/17/17.
*/
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@RestController
public @interface Endpoint {
String value() default "";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy