![JAR search and dependency download from the Maven repository](/logo.png)
net.intelie.live.plugins.messenger.data.MessageSanitizer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plugin-messenger Show documentation
Show all versions of plugin-messenger Show documentation
Intelie Live Messenger Plugin
The newest version!
package net.intelie.live.plugins.messenger.data;
import org.owasp.html.HtmlPolicyBuilder;
import org.owasp.html.PolicyFactory;
public class MessageSanitizer {
private final PolicyFactory policy;
public MessageSanitizer() {
this.policy = new HtmlPolicyBuilder()
.toFactory();
}
public String sanitize(String message) {
return policy.sanitize(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy