Class ClientClasspathYamlConfig

java.lang.Object
com.hazelcast.client.config.ClientConfig
com.hazelcast.client.config.ClientClasspathYamlConfig

public class ClientClasspathYamlConfig
extends ClientConfig
A ClientConfig which is initialized by loading an YAML configuration file from the classpath.
  • Constructor Details

    • ClientClasspathYamlConfig

      public ClientClasspathYamlConfig​(String resource)
      Creates a config which is loaded from a classpath resource using the Thread.currentThread() contextClassLoader. The System.properties are used to resolve variables in the YAML.
      Parameters:
      resource - the resource, a YAML configuration file from the classpath, without the "classpath:" prefix
      Throws:
      IllegalArgumentException - if the resource could not be found
      InvalidConfigurationException - if the YAML content is invalid
    • ClientClasspathYamlConfig

      public ClientClasspathYamlConfig​(String resource, Properties properties)
      Creates a config which is loaded from a classpath resource using the Thread.currentThread() contextClassLoader.
      Parameters:
      resource - the resource, a YAML configuration file from the classpath, without the "classpath:" prefix
      properties - the Properties to resolve variables in the YAML
      Throws:
      IllegalArgumentException - if the resource could not be found or if properties is null
      InvalidConfigurationException - if the YAML content is invalid
    • ClientClasspathYamlConfig

      public ClientClasspathYamlConfig​(ClassLoader classLoader, String resource, Properties properties)
      Creates a config which is loaded from a classpath resource.
      Parameters:
      classLoader - the ClassLoader used to load the resource
      resource - the resource, a YAML configuration file from the classpath, without the "classpath:" prefix
      properties - the properties used to resolve variables in the YAML
      Throws:
      IllegalArgumentException - if classLoader or resource is null, or if the resource is not found
      InvalidConfigurationException - if the YAML content is invalid