arp.process.Process Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ARP Show documentation
Show all versions of ARP Show documentation
a java development framework with aggregation, repository and process
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 "";
}