Uses of Class
com.hazelcast.config.ClassFilter
Packages that use ClassFilter
-
Uses of ClassFilter in com.hazelcast.config
Methods in com.hazelcast.config that return ClassFilterModifier and TypeMethodDescriptionClassFilter.add(ClassFilter other) Add the classes, packages and prefixes defined in the other filter to this filter.ClassFilter.addClasses(String... names) Adds the given class names to this filter.ClassFilter.addPackages(String... names) Adds the given package names to this filter.ClassFilter.addPrefixes(String... names) Adds the given class name prefixes to this filter.JavaSerializationFilterConfig.getBlacklist()Returns the blacklist filter.static ClassFilterConfigAccessor.getBlacklistOrNull(JavaSerializationFilterConfig filter) JavaSerializationFilterConfig.getWhitelist()Returns the whitelist filter.static ClassFilterConfigAccessor.getWhitelistOrNull(JavaSerializationFilterConfig filter) ClassFilter.setClasses(Collection<String> names) Sets the class names for this filter.ClassFilter.setPackages(Collection<String> names) Sets the package names for this filter.ClassFilter.setPrefixes(Collection<String> names) Sets the class name prefixes for this filter.Methods in com.hazelcast.config with parameters of type ClassFilterModifier and TypeMethodDescriptionClassFilter.add(ClassFilter other) Add the classes, packages and prefixes defined in the other filter to this filter.JavaSerializationFilterConfig.setBlacklist(ClassFilter blackList) Sets the blacklist filter.JavaSerializationFilterConfig.setWhitelist(ClassFilter whiteList) Sets the whitelist filter.Constructors in com.hazelcast.config with parameters of type ClassFilterModifierConstructorDescriptionClassFilter(ClassFilter filter) Creates a new class filter by copying the configuration from the given filter.