com.netgrif.application.engine.configuration.properties.enumeration.XXSSProtection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of application-engine Show documentation
Show all versions of application-engine Show documentation
System provides workflow management functions including user, role and data management.
package com.netgrif.application.engine.configuration.properties.enumeration;
/**
* DISABLE - Disable
*
* DISABLE_XSS (0) - Disables XSS filtering.
*
* ENABLE (1) - Enables XSS filtering (usually default in browsers). If a cross-site scripting attack is detected, the browser will sanitize the page (remove the unsafe parts).
*
* ENABLE_MODE (1; mode=block) - Enables XSS filtering. Rather than sanitizing the page, the browser will prevent rendering of the page if an attack is detected.
*
* More Info
*/
public enum XXSSProtection {
DISABLE,
DISABLE_XSS,
ENABLE,
ENABLE_MODE
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy