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

org.craftercms.commons.logging.Logged Maven / Gradle / Ivy

There is a newer version: 4.3.1
Show newest version
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