Class SVNAuthentication

    • Constructor Summary

      Constructors 
      Constructor Description
      SVNAuthentication​(java.lang.String kind, java.lang.String userName, boolean storageAllowed)
      Deprecated.
      use constructor with SVNURL parameter instead
      SVNAuthentication​(java.lang.String kind, java.lang.String userName, boolean storageAllowed, SVNURL url, boolean isPartial)
      Creates a username user credential object given a username.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      SVNAuthentication copy()
      Creates a deep copy of this credentials object.
      protected char[] copyOf​(char[] source)  
      void dismissSensitiveData()
      Disposes sensitive data (e.g.
      java.lang.String getKind()
      Returns a credential kind for which this authentication credential is used.
      SVNURL getURL()  
      java.lang.String getUserName()
      Reurns the username.
      boolean isPartial()
      Says if these credentials are partial.
      boolean isStorageAllowed()
      Says if this credential may be cached in the global auth cache.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • SVNAuthentication

        public SVNAuthentication​(java.lang.String kind,
                                 java.lang.String userName,
                                 boolean storageAllowed)
        Deprecated.
        use constructor with SVNURL parameter instead
        Creates a username user credential object given a username.
        Parameters:
        kind - a credential kind
        userName - a repository account username
        storageAllowed - if true then this credential is allowed to be stored in the global auth cache, otherwise not
      • SVNAuthentication

        public SVNAuthentication​(java.lang.String kind,
                                 java.lang.String userName,
                                 boolean storageAllowed,
                                 SVNURL url,
                                 boolean isPartial)
        Creates a username user credential object given a username.
        Parameters:
        kind - a credential kind
        userName - a repository account username
        storageAllowed - if true then this credential is allowed to be stored in the global auth cache, otherwise not
        url - url these credentials are applied to
        Since:
        1.3.1
    • Method Detail

      • getUserName

        public java.lang.String getUserName()
        Reurns the username.
        Returns:
        a repository account username
      • isStorageAllowed

        public boolean isStorageAllowed()
        Says if this credential may be cached in the global auth cache.
        Returns:
        true if this credential may be stored, false if may not
      • isPartial

        public boolean isPartial()
        Says if these credentials are partial. Partial credentials could miss password\passhprase and could be used to complement missing information.
        Returns:
        true if parital; otherwise false
        Since:
        1.3
      • getKind

        public java.lang.String getKind()
        Returns a credential kind for which this authentication credential is used.
        Returns:
        a credential kind
      • getURL

        public SVNURL getURL()
      • dismissSensitiveData

        public void dismissSensitiveData()
        Disposes sensitive data (e.g. password) stored in this object.
        Since:
        1.8.9
      • copy

        public SVNAuthentication copy()
        Creates a deep copy of this credentials object. Sensitive data (e.g. password) is copied too.
        Returns:
        copy of this object.
        Since:
        1.8.9
      • copyOf

        protected char[] copyOf​(char[] source)