* @see com.google.code.stackexchange.client.StackOverflowApiClient#searchQuestions(java.util.List, java.util.List, com.google.code.stackexchange.schema.User.QuestionSortOrder, com.google.code.stackexchange.schema.Paging)
*/
@Override
public PagedList<Question> searchQuestions(List<String> includeTags,
List<String> excludeTags, QuestionSortOrder sort, Paging paging) {
ApiUrlBuilder builder = createStackOverflowApiUrlBuilder(StackExchangeApiMethods.SEARCH_QUESTIONS);
String apiUrl = builder.withParameters("tagged", includeTags, ";").withParameters("nottagged", excludeTags, ";").withSort(sort).withPaging(paging).buildUrl();
return unmarshallList(Question.class, callApiMethod(apiUrl));
}