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

cn.twelvet.xss.annotation.XssCleanIgnore Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
package cn.twelvet.xss.annotation;

import java.lang.annotation.*;

/**
 * 忽略 xss
 *
 * @author twelvet
 */
@Target({ ElementType.TYPE, ElementType.METHOD })
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface XssCleanIgnore {

	/**
	 * @return 需要跳过的字段列表
	 */
	String[] value() default {};

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy