@Override
public PagedList<Question> getUnansweredQuestions(
Question.UnansweredSortOrder sort, Paging paging,
TimePeriod timePeriod, Set<FilterOption> filterOptions) {
ApiUrlBuilder builder = createStackOverflowApiUrlBuilder(StackExchangeApiMethods.GET_UN_ANSWERED_QUESTIONS);
String apiUrl = builder.withSort(sort).withPaging(paging).withTimePeriod(timePeriod).withFetchOptions(filterOptions).buildUrl();
return unmarshallList(Question.class, callApiMethod(apiUrl));
}
/* (non-Javadoc)