Class BasicAuthentication
- java.lang.Object
-
- org.jboss.resteasy.client.jaxrs.internal.BasicAuthentication
-
- All Implemented Interfaces:
ClientRequestFilter
public class BasicAuthentication extends Object implements 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 Constructor Description BasicAuthentication(String username, String password)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidfilter(ClientRequestContext requestContext)Filter method called before a request has been dispatched to a client transport layer.
-
-
-
Method Detail
-
filter
public void filter(ClientRequestContext requestContext) throws IOException
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.
-
-