Class ConnectionManager

    • Constructor Detail

      • ConnectionManager

        public ConnectionManager()
    • Method Detail

      • hasConnection

        public boolean hasConnection​(String name,
                                     ConnectionType type)
        Description copied from interface: IConnectionManager
        This method can be used to check if this manager has a connection for the given name and type.
        Specified by:
        hasConnection in interface IConnectionManager
        Parameters:
        name - The name of the connection, may not be null.
        type - The connection type, may not be null.
        Returns:
        True is there is a connection for the given name and type, otherwise false.
      • hasConnection

        public boolean hasConnection​(String name)
        Description copied from interface: IConnectionManager
        This method can be used to check whether this manager has a connection for the given name.
        Specified by:
        hasConnection in interface IConnectionManager
        Parameters:
        name - The name of the connection, may not be null.
        Returns:
        True if there is a connection for the given name, otherwise false.
      • getConnectionNames

        public String[] getConnectionNames​(ConnectionType type)
        Description copied from interface: IConnectionManager
        This method returns all the available names for a specified type.
        Specified by:
        getConnectionNames in interface IConnectionManager
        Parameters:
        type - The connection type, may not be null.
        Returns:
        The connection names, never null.
      • getSqlConnection

        public ISqlConnection getSqlConnection​(String name)
        Description copied from interface: IConnectionManager
        This method returns the SQL connection with the specified name.
        Specified by:
        getSqlConnection in interface IConnectionManager
        Parameters:
        name - The name of the requested SQL connection.
        Returns:
        Connection object for the specified name.
      • getMailConnection

        public IMailConnection getMailConnection​(String name)
        Description copied from interface: IConnectionManager
        This method returns the mail connection with the specified name.
        Specified by:
        getMailConnection in interface IConnectionManager
        Parameters:
        name - The name of the requested mail connection.
        Returns:
        Connection object for the specified name.
      • getConnection

        public IConnection getConnection​(String name)
        Description copied from interface: IConnectionManager
        This method returns a connection with the specified name.
        Specified by:
        getConnection in interface IConnectionManager
        Parameters:
        name - The name of the requested connection
        Returns:
        Connection object for the specified name