@ResponseBody
List<MockPojo> getTestPojos(HttpServletRequest request,
@ApiParam(name = "testVariable", value = "String")
@PathVariable String testVariable) {
List<MockPojo> mockPojos = new ArrayList<MockPojo>();
MockPojo mockPojo = new MockPojo();
mockPojo.setId(1);
mockPojo.setName("Test Pojo");
mockPojo.setDescription("This is a test pojo for testing purposes.");
mockPojos.add(mockPojo);
return mockPojos;
}