Como obter a lista <> como resposta do cliente jersey2

Eu tentei isso,

List<String> list=client.target(url).
                    request(MediaType.APPLICATION_JSON).get(new GenericType<List<String>>(){});

mas não estou recebendo a lista, mas sim valor nulo

questionAnswers(3)

yourAnswerToTheQuestion