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

org.infinispan.commons.configuration.ClassWhiteList Maven / Gradle / Ivy

There is a newer version: 15.1.0.Dev04
Show newest version
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, since = "12.0")
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 - 2024 Weber Informatics LLC | Privacy Policy