ch-commons-sql/src/main/java/com/cloudhopper/commons/sql/DataSourceConfiguration.java [544:569]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void setUsername(String username) {
        this.username = username;
    }

    /**
     * Gets the username to use for connecting to the DataSource.
     * @return The username
     */
    public String getUsername() {
        return this.username;
    }

    /**
     * Sets the password to use for connecting to the DataSource.
     * @param password The password
     */
    public void setPassword(String password) {
        this.password = password;
    }

    /**
     * Gets the password to use for connecting to the DataSource.
     * @return The password
     */
    public String getPassword() {
        return this.password;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



ch-commons-util/src/main/java/com/cloudhopper/commons/util/URL.java [132:165]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public void setUsername(String username) {
        this.username = username;
    }

    /**
     * Gets the username such as "root" if the URL is "http://root@www.google.com/"
     * or "ro@t" if the URL is "http://ro%40t@www.google.com/".
     * The value will be decoded from its "URL encoding" form if it contained
     * characters that require escaping.
     * @return The username in URL-decoded form or null if not set
     */
    public String getUsername() {
        return this.username;
    }

    /**
     * Sets the password such as "test" if the URL is "http://root:test@www.google.com/"
     * or "t@st" if the URL is "http://root:t%40st@www.google.com/".
     * The value should be in its decoded form (not URL encoded).
     * @param username The password in URL-decoded form or null if not set
     */
    public void setPassword(String password) {
        this.password = password;
    }

    /**
     * Gets the password such as "test" if the URL is "http://root:test@www.google.com/"
     * or "t@st" if the URL is "http://root:t%40st@www.google.com/".
     * The value will be decoded from its "URL encoding" form if it contained
     * characters that require escaping.
     * @return The password in URL-decoded form  or null if not set
     */
    public String getPassword() {
        return this.password;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



