All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.uniliva.commonsutils.annotation.LogarExecucao Maven / Gradle / Ivy

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 { }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy