Class AbstractSshBasedRepository

    • Constructor Detail

      • AbstractSshBasedRepository

        public AbstractSshBasedRepository()
    • Method Detail

      • getSession

        protected com.jcraft.jsch.Session getSession​(java.lang.String pathOrUri)
                                              throws java.io.IOException
        get a new session using the default attributes if the given String is a full uri, use the data from the uri instead
        Parameters:
        pathOrUri - might be just a path or a full ssh or sftp uri
        Returns:
        matching Session
        Throws:
        java.io.IOException
      • releaseSession

        protected void releaseSession​(com.jcraft.jsch.Session session,
                                      java.lang.String pathOrUri)
        closes the session and remove it from the cache (eg. on case of errors)
        Parameters:
        session - key for the cache
        pathOrUri - to release
      • setUser

        public void setUser​(java.lang.String user)
        set the default user to use for the connection if no user is given or a PEM file is used
        Parameters:
        user - to use
      • getUser

        public java.lang.String getUser()
        Returns:
        the user to use for the connection if no user is given or a PEM file is used
      • setKeyFile

        public void setKeyFile​(java.io.File filePath)
        Sets the full file path to use for accessing a PEM key file
        Parameters:
        filePath - fully qualified name
      • getKeyFile

        public java.io.File getKeyFile()
        Returns:
        the keyFile
      • setUserPassword

        public void setUserPassword​(java.lang.String password)
        Parameters:
        password - password to use for user/password authentication
      • getKeyFilePassword

        public java.lang.String getKeyFilePassword()
        Returns:
        the keyFile password for public key based authentication
      • setKeyFilePassword

        public void setKeyFilePassword​(java.lang.String keyFilePassword)
        Parameters:
        keyFilePassword - sets password for public key based authentication
      • getUserPassword

        public java.lang.String getUserPassword()
        Returns:
        the user password
      • getHost

        public java.lang.String getHost()
        Returns:
        the host
      • setHost

        public void setHost​(java.lang.String host)
        Parameters:
        host - the host to set
      • getPort

        public int getPort()
        Returns:
        the port
      • setPort

        public void setPort​(int port)
        Parameters:
        port - the port to set
      • setPassFile

        public void setPassFile​(java.io.File passFile)
        Parameters:
        passFile - the passfile to set
      • getPassFile

        public java.io.File getPassFile()
        Returns:
        the passFile
      • isAllowedAgentUse

        public boolean isAllowedAgentUse()
        Returns:
        allowedAgentUse Whether use of a local SSH agent for authentication is allowed
      • setAllowedAgentUse

        public void setAllowedAgentUse​(boolean allowedAgentUse)
        Parameters:
        allowedAgentUse - Whether use of a local SSH agent for authentication is allowed
      • getRepositoryScheme

        protected abstract java.lang.String getRepositoryScheme()