@Restricted(value=org.kohsuke.accmod.restrictions.NoExternalUse.class)
public class ClassFilterImpl
extends hudson.remoting.ClassFilter
ClassFilter.DEFAULT
.
First of all, CustomClassFilter
s are given the first right of decision.
Then delegates to ClassFilter.STANDARD
for its blacklist.
A class not mentioned in the blacklist is permitted unless it is defined in some third-party library
(as opposed to jenkins-core.jar
, a plugin JAR, or test code during Main.isUnitTest
)
yet is not mentioned in whitelisted-classes.txt
.Modifier and Type | Method and Description |
---|---|
boolean |
isBlacklisted(Class _c) |
boolean |
isBlacklisted(String name) |
static void |
register()
Register this implementation as the default in the system.
|
static void |
unregister()
Undo
register() . |
public static void register()
public static void unregister()
register()
.public boolean isBlacklisted(Class _c)
isBlacklisted
in class hudson.remoting.ClassFilter
public boolean isBlacklisted(String name)
isBlacklisted
in class hudson.remoting.ClassFilter
Copyright © 2004–2021. All rights reserved.