Class SessionBuilder


  • public class SessionBuilder
    extends Object
    Provides methods to set configuration properties and create a Session.
    Since:
    0.8.0
    See Also:
    Session
    • Method Detail

      • configFile

        public SessionBuilder configFile​(String path)
        Adds the configuration properties in the specified file to the SessionBuilder configuration.
        Parameters:
        path - Path to the file containing the configuration properties.
        Returns:
        This SessionBuilder object.
        Since:
        0.8.0
      • config

        public SessionBuilder config​(String key,
                                     String value)
        Adds the specified configuration property and value to the SessionBuilder configuration.
        Parameters:
        key - Name of the configuration property.
        value - Value of the configuration property.
        Returns:
        A reference of this SessionBuilder object
        Since:
        1.1.0
      • configs

        public SessionBuilder configs​(Map<String,​String> configs)
        Adds the specified Map of configuration properties to the SessionBuilder configuration.

        Note that calling this method overwrites any existing configuration properties that you have already set in the SessionBuilder.

        Parameters:
        configs - A Java Map contains configurations
        Returns:
        A reference of this SessionBuilder object
        Since:
        1.1.0
      • create

        public Session create()
        Creates a new Session.
        Returns:
        A Session object
        Since:
        0.8.0
      • getOrCreate

        public Session getOrCreate()
        Returns the existing session if already exists or create it if not.
        Returns:
        A Session object
        Since:
        1.10.0
      • appName

        public SessionBuilder appName​(String appName)
        Adds the app name to set in the query_tag after session creation. The query tag will be set with this format 'APPNAME=${appName}'.
        Parameters:
        appName - Name of the app.
        Returns:
        A SessionBuilder object
        Since:
        1.12.0