/** * */ package com.trendrr.strest.annotations; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; /** * @author Dustin Norlander * @created Feb 29, 2012 * */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) public @interface Async { }