Package de.biehlerjosef.unofficialeasybacklogadapter.domain

Examples of de.biehlerjosef.unofficialeasybacklogadapter.domain.Theme


  }
 
  public Theme getTheme(Backlog backlog, Integer themeId) {
    throwIfParametersMissing();
    String content = httpAdapter.getResult(Constants.GET_THEME, getBaseUrl(), getApiKey(), String.valueOf(backlog.getId()), String.valueOf(themeId));
    Theme theme = getDomainObject(content, Theme.class);
    theme.setBacklog(backlog);
    return theme;
  }
View Full Code Here

TOP

Related Classes of de.biehlerjosef.unofficialeasybacklogadapter.domain.Theme

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.