Class BasicAuthentication
java.lang.Object
org.jboss.resteasy.client.jaxrs.internal.BasicAuthentication
- All Implemented Interfaces:
ClientRequestFilter
Client filter that will do basic authentication. You must allocate it and then register it with the Client or WebTarget
- Version:
- $Revision: 1 $
- Author:
- Bill Burke
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidfilter(ClientRequestContext requestContext) Filter method called before a request has been dispatched to a client transport layer.
-
Constructor Details
-
BasicAuthentication
- Parameters:
username- user namepassword- password
-
-
Method Details
-
filter
Description copied from interface:ClientRequestFilterFilter method called before a request has been dispatched to a client transport layer. Filters in the filter chain are ordered according to theirjakarta.annotation.Priorityclass-level annotation value.- Specified by:
filterin interfaceClientRequestFilter- Parameters:
requestContext- request context.- Throws:
IOException- if an I/O exception occurs.
-