com.github.uniliva.commonsutils.annotation.LogarExecucao Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lib-commons-utils Show documentation
Show all versions of lib-commons-utils Show documentation
Biblioteca de métodos utilitários
The newest version!
package com.github.uniliva.commonsutils.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import com.github.uniliva.commonsutils.config.AopConfig;
/**
*
* Anotação utilizada para tornar os métodos visíveis ao log de execuções via
* AspectJ
*
* Métodos anotados irão medir o tempo de início e fim de suas execuções.
*
* @see AopConfig
*/
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface LogarExecucao {
}