Package org.apache.jmeter
Class ProxyAuthenticator
java.lang.Object
java.net.Authenticator
org.apache.jmeter.ProxyAuthenticator
Provides JMeter the ability to use proxy servers that require username and
password.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.net.Authenticator
Authenticator.RequestorType
-
Constructor Summary
ConstructorDescriptionProxyAuthenticator
(String userName, String password) Create a ProxyAuthenticator with the specified username and password. -
Method Summary
Modifier and TypeMethodDescriptionprotected PasswordAuthentication
Return a PasswordAuthentication instance using the userName and password specified in the constructor.Methods inherited from class java.net.Authenticator
getDefault, getRequestingHost, getRequestingPort, getRequestingPrompt, getRequestingProtocol, getRequestingScheme, getRequestingSite, getRequestingURL, getRequestorType, requestPasswordAuthentication, requestPasswordAuthentication, requestPasswordAuthentication, requestPasswordAuthentication, requestPasswordAuthenticationInstance, setDefault
-
Constructor Details
-
ProxyAuthenticator
Create a ProxyAuthenticator with the specified username and password.- Parameters:
userName
- the username to authenticate withpassword
- the password to authenticate with
-
-
Method Details
-
getPasswordAuthentication
Return a PasswordAuthentication instance using the userName and password specified in the constructor. Only applies to PROXY request types.- Overrides:
getPasswordAuthentication
in classAuthenticator
- Returns:
- a PasswordAuthentication instance to use for authenticating with the proxy
-