org.jboss.seam.annotations.Logger Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jboss-seam Show documentation
Show all versions of jboss-seam Show documentation
Seam core module for Seam framework integrated with JSF2
//$Id: Logger.java 9621 2008-11-24 17:31:44Z dan.j.allen $
package org.jboss.seam.annotations;
import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
/**
* Injects a log
*
* @author Gavin King
*/
@Target(FIELD)
@Retention(RUNTIME)
@Documented
public @interface Logger {
/**
* @return the log category
*/
String value() default "";
}