}
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;
}