Package edu.indiana.extreme.xbaya.mylead

Examples of edu.indiana.extreme.xbaya.mylead.MyLeadAgentStub.listProjects()


     */
    public void testListProjects() throws MyLeadException {
        MyLeadAgentStub stub = new MyLeadAgentStub(this.configuration
                .getMyLeadAgentURL(), this.myProxyClient.getProxy());

        ArrayList<MyLeadQueryResultItem> projects = stub
                .listProjects(this.configuration.getMyLeadUser());
        for (MyLeadQueryResultItem project : projects) {
            String projectID = project.getResouceID();
            logger.info("projectID: " + projectID);
            String title = project.getTitle();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.