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

io.leopard.web.annotation.NoXss Maven / Gradle / Ivy

The newest version!
package io.leopard.web.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;

@Target({ ElementType.PARAMETER, ElementType.FIELD, ElementType.METHOD })
@Retention(RetentionPolicy.RUNTIME)
@Documented
/**
 * 不需要做XSS检查.
 * @author 阿海
 *
 */
public @interface NoXss {

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy