package org.oddjob.framework; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Annotate that a method is the stop method of a service. * * @see Service * @see ServiceStrategies * * @author rob * */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) public @interface Stop { }