Package org.as.jtrello.members

Examples of org.as.jtrello.members.MemberService


   * permissions via instructions at https://trello.com/docs/gettingstarted/index.html#getting-a-token-from-a-user)
   */
  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);
View Full Code Here

TOP

Related Classes of org.as.jtrello.members.MemberService

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.