templates.qeex.QeexMessage.ftl Maven / Gradle / Ivy
package ${groupId}.api.qeex.annotations;
import jakarta.inject.Qualifier;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
@Qualifier
@Target({METHOD})
@Retention(RUNTIME)
@Documented
public @interface QeexMessage {
int id() default -1;
String message() default "";
int code() default 400;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy