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

org.jboss.seam.annotations.Logger Maven / Gradle / Ivy

There is a newer version: 3.2.26.ayg
Show newest version
//$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 "";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy