Package jenkins.security.s2m
Class JarURLValidatorImpl
- java.lang.Object
-
- jenkins.security.ChannelConfigurator
-
- jenkins.security.s2m.JarURLValidatorImpl
-
- All Implemented Interfaces:
ExtensionPoint
,hudson.remoting.JarURLValidator
@Restricted(org.kohsuke.accmod.restrictions.NoExternalUse.class) @Deprecated @Extension public class JarURLValidatorImpl extends ChannelConfigurator implements hudson.remoting.JarURLValidator
Deprecated.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface hudson.ExtensionPoint
ExtensionPoint.LegacyInstancesAreScopedToHudson
-
-
Constructor Summary
Constructors Constructor Description JarURLValidatorImpl()
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
onChannelBuilding(hudson.remoting.ChannelBuilder builder, Object context)
Deprecated.Called whenever a new channel is being built.void
validate(URL url)
Deprecated.-
Methods inherited from class jenkins.security.ChannelConfigurator
all
-
-
-
-
Field Detail
-
LOGGER
public static final Logger LOGGER
Deprecated.
-
-
Method Detail
-
onChannelBuilding
public void onChannelBuilding(hudson.remoting.ChannelBuilder builder, @Nullable Object context)
Deprecated.Description copied from class:ChannelConfigurator
Called whenever a new channel is being built.- Overrides:
onChannelBuilding
in classChannelConfigurator
- Parameters:
builder
- Configures the newly built channel. The callee can call its methods to modify its settings.context
- The parameter that helps the callee determines what this channel is for. Legacy callers do not always provide this information, in which case this value might be null. Possible known values include:SlaveComputer
- When a channel is being established to talk to a agent.
Proc
- When
Channels.forProcess(String, ExecutorService, Process, OutputStream)
or overloads are used without a contextualSlaveComputer
.
-
validate
public void validate(URL url) throws IOException
Deprecated.- Specified by:
validate
in interfacehudson.remoting.JarURLValidator
- Throws:
IOException
-
-