
forklift.decorators.Service Maven / Gradle / Ivy
package forklift.decorators;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Mark a class to be managed in the consumer deployment's classloader.
*/
@Documented
@Inherited
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE})
public @interface Service {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy