Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for maskSecretValue (0.25 sec)

  1. src/main/java/jcifs/util/Strings.java

        private static final Charset ASCII_ENCODING = Charset.forName("US-ASCII");
    
        private static final boolean MASK_SECRET_VALUE = System.getProperty("jcifs.maskSecretValue", "true") == "true";
        private static final String SECRET_PATTERN = "^(smb.*:).*(@.*)$";
        private static final String SECRET_MASK_REPLACE = "$1******$2";
    
        /**
         * 
         */
        private Strings () {}
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 4.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

         * as <code>getPath</code>.
         *
         * @return The original URL representation of this SMB resource
         */
    
        @Override
        public String toString () {
            return Strings.maskSecretValue(url.toString());
        }
    
    
        /* URLConnection implementation */
        /**
         * This URLConnection method just returns the result of <tt>length()</tt>.
         *
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * as <code>getPath</code>.
     *
     * @return  The original URL representation of this SMB resource
     * @throws SmbException
     */
    
        public String toString() {
            return Strings.maskSecretValue(url.toString());
        }
    
    /* URLConnection implementation */
    /**
     * This URLConnection method just returns the result of <tt>length()</tt>.
     *
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
Back to top