Package org.as.jtrello.organizations

Examples of org.as.jtrello.organizations.OrganizationService


   */
  public JTrelloClient(String authKey, String secretKey, String authToken) {
    Config config = Config.getInstance(authKey, secretKey, authToken);
     
    this.members     = new MemberService(config);
    this.organizations   = new OrganizationService(config);
    this.boards     = new BoardService(config);
    this.lists      = new ListService(config);
    this.cards      = new CardService(config);
    this.checklists    = new ChecklistService(config);
    this.notifications  = new NotificationService(config);
View Full Code Here

TOP

Related Classes of org.as.jtrello.organizations.OrganizationService

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.