![JAR search and dependency download from the Maven repository](/logo.png)
org.infinispan.commons.configuration.ClassWhiteList Maven / Gradle / Ivy
package org.infinispan.commons.configuration;
import java.util.Collection;
import java.util.List;
/**
* @deprecated since 12.0. Will be removed in 14.0. Use {@link ClassAllowList}.
**/
@Deprecated(forRemoval = true)
public final class ClassWhiteList extends ClassAllowList {
public ClassWhiteList() {
}
public ClassWhiteList(List regexps) {
super(regexps);
}
public ClassWhiteList(Collection classes, List regexps, ClassLoader classLoader) {
super(classes, regexps, classLoader);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy