com.google.sitebricks.After Maven / Gradle / Ivy
package com.google.sitebricks;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Annotate methods that should be called after a response body is written.
*
* @author [email protected] (Dhanji R. Prasanna)
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface After {
}