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

arp.process.Process Maven / Gradle / Ivy

The newest version!
package arp.process;

import static java.lang.annotation.ElementType.METHOD;

import java.lang.annotation.Target;

@Target(METHOD)
public @interface Process {

	boolean publish() default false;

	boolean dontPublishWhenResultIsNull() default false;

	String name() default "";

	String listening() default "";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy