org.craftercms.commons.logging.Logged Maven / Gradle / Ivy
package org.craftercms.commons.logging;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Annotation used to indicate that a method (or all methods of a class, if used in a class) should be logged.
*
* @author avasquez
*/
@Target({ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface Logged {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy