All Downloads are FREE. Search and download functionalities are using the official Maven repository.

templates.qeex.QeexMessage.ftl Maven / Gradle / Ivy

There is a newer version: 3.0.3
Show newest version
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