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

cn.coder.struts.annotation.WebInit Maven / Gradle / Ivy

The newest version!
package cn.coder.struts.annotation;

import static java.lang.annotation.RetentionPolicy.RUNTIME;

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

@Retention(RUNTIME)
@Inherited
@Target(ElementType.TYPE)
@Documented
public @interface WebInit {

	String init() default "init";
	
	String destroy() default "destroy";
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy