Examples of EasyBacklog


Examples of de.biehlerjosef.unofficialeasybacklogadapter.rest.EasyBacklog

   * @param args
   * @throws LazyLoadingRequiresInstanceOfEasyBacklog
   */
  public static void main(String[] args) throws LazyLoadingRequiresInstanceOfEasyBacklog {
    // TODO Auto-generated method stub
    EasyBacklog bl = EasyBacklog.getEasyBacklog();
    bl.setBaseUrl("https://easybacklog.com/api/");
    bl.setApiKey("gws1m20n8tatotvx7riq");
    bl.setAccountId(3432);
    bl.authenticate();


    List<Backlog> backlogs = bl.getBacklogs();
    //List<Account> accounts = bl.getAccounts();
    try {
    Story s = bl.getStories(bl.getThemes(backlogs.get(0)).get(0)).get(0);
    SprintStory ss = s.getSprintStory();
   
    ss.getId();
    } catch (Exception e) {
      bl.getAccountId();
    }
    return;
  }
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.