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

com.syntaxphoenix.syntaxapi.service.SubscribeService Maven / Gradle / Ivy

There is a newer version: 2.0.13
Show newest version
package com.syntaxphoenix.syntaxapi.service;

import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

import java.lang.annotation.Retention;
import java.lang.annotation.Target;

@Retention(RUNTIME)
@Target({
    FIELD,
    METHOD
})
public @interface SubscribeService {

    public Class service();

    public ServicePriority priority() default ServicePriority.NORMAL;

    public boolean returnsObject() default false;

    public Class returnType() default Object.class;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy