Class HTTPClientFactory

  • All Implemented Interfaces:
    java.util.function.Function<java.util.Map<java.lang.String,​java.lang.String>,​RESTClient>

    public class HTTPClientFactory
    extends java.lang.Object
    implements java.util.function.Function<java.util.Map<java.lang.String,​java.lang.String>,​RESTClient>
    Takes in the full configuration for the RESTSessionCatalog, which should already have called the server's initial configuration route. Using the merged configuration, an instance of RESTClient is obtained that can be used with the RESTCatalog.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      RESTClient apply​(java.util.Map<java.lang.String,​java.lang.String> properties)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface java.util.function.Function

        andThen, compose
    • Constructor Detail

      • HTTPClientFactory

        public HTTPClientFactory()
    • Method Detail

      • apply

        public RESTClient apply​(java.util.Map<java.lang.String,​java.lang.String> properties)
        Specified by:
        apply in interface java.util.function.Function<java.util.Map<java.lang.String,​java.lang.String>,​RESTClient>