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

org.sparta.springwebutils.annotation.ExternalEntryPoint Maven / Gradle / Ivy

There is a newer version: 1.5.7
Show newest version
package org.sparta.springwebutils.annotation;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/** 
 * @author Carlos Eduardo Endler Genz
 * 
 * History: 
 *    Feb 28, 2014 - cgenz
 *  
 */ 
@Target({ElementType.TYPE, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface ExternalEntryPoint {
	
	String name() default "";
	
	String[] nameBlacklist() default {};
	
	Class[] typeBlacklist() default {};
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy