@Test
public void testGetBookAdapterInterfaceList() throws Exception {
BookStore store = JAXRSClientFactory.create("http://localhost:" + PORT, BookStore.class);
List<? extends BookInfoInterface> list = store.getBookAdapterInterfaceList();
assertEquals(1, list.size());
BookInfoInterface info = list.get(0);
assertEquals(123L, info.getId());
}