Class CoherenceConfigClientProperties.GrpcClientProperties

  • Enclosing class:
    CoherenceConfigClientProperties

    public static class CoherenceConfigClientProperties.GrpcClientProperties
    extends java.lang.Object
    Coherence gRPC client configuration.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getHost()
      Returns host name of gRPC server.
      int getPort()
      Gets gRPC server port.
      boolean isEnableTls()
      Returns true if TLS is enabled.
      void setEnableTls​(boolean enableTls)
      Enables TLS support.
      void setHost​(java.lang.String host)
      Sets host name of gRPC server.
      void setPort​(int port)
      Sets gRPC server port.
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • GrpcClientProperties

        public GrpcClientProperties()
    • Method Detail

      • getHost

        public java.lang.String getHost()
        Returns host name of gRPC server.
        Returns:
        host name
      • setHost

        public void setHost​(java.lang.String host)
        Sets host name of gRPC server.
        Parameters:
        host - host name
      • getPort

        public int getPort()
        Gets gRPC server port.
        Returns:
        port
      • setPort

        public void setPort​(int port)
        Sets gRPC server port.
        Parameters:
        port - port
      • isEnableTls

        public boolean isEnableTls()
        Returns true if TLS is enabled.
        Returns:
        true if TLS is enabled
      • setEnableTls

        public void setEnableTls​(boolean enableTls)
        Enables TLS support.
        Parameters:
        enableTls - if not set, defaults to true. Set to false to disable TLS.
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object