Package hudson.cli
Class CliTransportAuthenticator
java.lang.Object
hudson.cli.CliTransportAuthenticator
- All Implemented Interfaces:
- ExtensionPoint
@Deprecated
public abstract class CliTransportAuthenticator
extends Object
implements ExtensionPoint
Deprecated.
No longer used.
- 
Nested Class SummaryNested classes/interfaces inherited from interface hudson.ExtensionPointExtensionPoint.LegacyInstancesAreScopedToHudson
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionall()Deprecated.abstract voidauthenticate(String protocol, hudson.remoting.Channel channel, Connection con) Deprecated.Performs authentication.abstract booleansupportsProtocol(String protocol) Deprecated.Checks if this implementation supports the specified protocol.
- 
Constructor Details- 
CliTransportAuthenticatorpublic CliTransportAuthenticator()Deprecated.
 
- 
- 
Method Details- 
supportsProtocolDeprecated.Checks if this implementation supports the specified protocol.- Parameters:
- protocol- Identifier. CLI.jar is hard-coded with the built-in knowledge about a specific protocol.
- Returns:
- true if this implementation supports the specified protocol,
      in which case authenticate(String, Channel, Connection)would be called next.
 
- 
authenticateDeprecated.Performs authentication.The authentication - Parameters:
- protocol- Protocol identifier that- supportsProtocol(String)returned true.
- channel- Communication channel to the client.
 
- 
allDeprecated.
 
-