Interface ReconnectableRepository

  • All Superinterfaces:
    Repository

    public interface ReconnectableRepository
    extends Repository
    Allows to connect to repository multiple times (in case of timeout and etc).
    • Method Detail

      • connect

        void connect​(String username,
                     String password)
              throws org.pentaho.di.core.exception.KettleException,
                     org.pentaho.di.core.exception.KettleSecurityException
        Connect to the repository. This repository type allows to connect more than once to the same repository object.
        Specified by:
        connect in interface Repository
        Parameters:
        username - the username of the user connecting to the repository.
        password - the password of the user connecting to the repository.
        Throws:
        org.pentaho.di.core.exception.KettleSecurityException - in case the supplied user or password is incorrect.
        org.pentaho.di.core.exception.KettleException - in case there is a general unexpected error.