Class BasicAuthentication

  • All Implemented Interfaces:
    javax.ws.rs.client.ClientRequestFilter

    public class BasicAuthentication
    extends java.lang.Object
    implements javax.ws.rs.client.ClientRequestFilter
    Client filter that will do basic authentication. You must allocate it and then register it with the Client or WebTarget
    Version:
    $Revision: 1 $
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private java.lang.String authHeader  
    • Constructor Summary

      Constructors 
      Constructor Description
      BasicAuthentication​(java.lang.String username, java.lang.String password)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void filter​(javax.ws.rs.client.ClientRequestContext requestContext)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • authHeader

        private final java.lang.String authHeader
    • Constructor Detail

      • BasicAuthentication

        public BasicAuthentication​(java.lang.String username,
                                   java.lang.String password)
        Parameters:
        username -
        password -
    • Method Detail

      • filter

        public void filter​(javax.ws.rs.client.ClientRequestContext requestContext)
                    throws java.io.IOException
        Specified by:
        filter in interface javax.ws.rs.client.ClientRequestFilter
        Throws:
        java.io.IOException