blob: 696de9a01340b93f189a795fc7a342753ce4a9c3 [file] [log] [blame]
package org.owasp.validator.html;
public class AntiSamy {
public static final Object DOM = "DOM";
public static final Object SAX = "SAX";
public AntiSamy(Policy policy) {
}
public CleanResults scan(String input) throws ScanException {
throw new IllegalStateException();
}
public CleanResults scan(String input, Object dom) {
throw new IllegalStateException();
}
}