Package org.eclipse.jgit.transport
Class HttpAuthMethod.Basic
- java.lang.Object
-
- org.eclipse.jgit.transport.HttpAuthMethod
-
- org.eclipse.jgit.transport.HttpAuthMethod.Basic
-
- Enclosing class:
- HttpAuthMethod
private static class HttpAuthMethod.Basic extends HttpAuthMethod
Performs HTTP basic authentication (plaintext username/password).
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.eclipse.jgit.transport.HttpAuthMethod
HttpAuthMethod.Type
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.String
pass
private java.lang.String
user
-
Fields inherited from class org.eclipse.jgit.transport.HttpAuthMethod
EMPTY_STRING, SCHEMA_NAME_SEPARATOR, type
-
-
Constructor Summary
Constructors Constructor Description Basic()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description (package private) void
authorize(java.lang.String username, java.lang.String password)
Update this method with the given username and password pair.(package private) void
configureRequest(HttpConnection conn)
Update connection properties based on this authentication method.-
Methods inherited from class org.eclipse.jgit.transport.HttpAuthMethod
authorize, getType, scanResponse
-
-
-
-
Method Detail
-
authorize
void authorize(java.lang.String username, java.lang.String password)
Description copied from class:HttpAuthMethod
Update this method with the given username and password pair.- Specified by:
authorize
in classHttpAuthMethod
-
configureRequest
void configureRequest(HttpConnection conn) throws java.io.IOException
Description copied from class:HttpAuthMethod
Update connection properties based on this authentication method.- Specified by:
configureRequest
in classHttpAuthMethod
- Throws:
java.io.IOException
-
-