Package com.rallydev.rest.client

Examples of com.rallydev.rest.client.BasicAuthClient


     * @param userName The username to be used for authentication.
     * @param password The password to be used for authentication.
     * @deprecated Use the api key constructor instead.
     */
    public RallyRestApi(URI server, String userName, String password) {
        this(new BasicAuthClient(server, userName, password));
    }
View Full Code Here

TOP

Related Classes of com.rallydev.rest.client.BasicAuthClient

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.