}
public Story getStory(int storyId, Theme theme) {
throwIfParametersMissing();
String content = httpAdapter.getResult(Constants.GET_STORY, getBaseUrl(), getApiKey(), String.valueOf(storyId));
Story story;
Gson gson = new Gson();
Type collectionType = new TypeToken<ArrayList<Story>>(){}.getType();
story = gson.fromJson(content, collectionType);
story.setTheme(theme);
return story;
}