本文整理汇总了Java中org.kuali.rice.ksb.messaging.remotedservices.BaseballCardCollectionService类的典型用法代码示例。如果您正苦于以下问题:Java BaseballCardCollectionService类的具体用法?Java BaseballCardCollectionService怎么用?Java BaseballCardCollectionService使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
BaseballCardCollectionService类属于org.kuali.rice.ksb.messaging.remotedservices包,在下文中一共展示了BaseballCardCollectionService类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testJaxRsService
import org.kuali.rice.ksb.messaging.remotedservices.BaseballCardCollectionService; //导入依赖的package包/类
@Test
public void testJaxRsService() {
BaseballCardCollectionService service = GlobalResourceLoader.getService(new QName("test", "baseballCardCollectionService"));
// invoke a method that stores the headers
List<BaseballCard> allCards = service.getAll();
Assert.assertNotNull(allCards);
assertHeadersCaptured();
}
示例2: testBaseballCardCollectionService
import org.kuali.rice.ksb.messaging.remotedservices.BaseballCardCollectionService; //导入依赖的package包/类
/**
* Exercise our RESTful {@link BaseballCardCollectionService} over the KSB
*/
@Test
public void testBaseballCardCollectionService() {
BaseballCard cardA = new BaseballCard("Mickey Mantle", "Topps", 1952);
BaseballCard cardB = new BaseballCard("Ted Williams", "Bowman", 1954);
BaseballCard cardC = new BaseballCard("Willie Mays", "Bowman", 1951);
BaseballCard cardD = new BaseballCard("Willie Mays Hayes", "Bogus", 1989);
BaseballCardCollectionService service =
(BaseballCardCollectionService) GlobalResourceLoader.getService(
new QName(NAMESPACE, BBCARD_SERVICE)
);
// test @POST
service.add(cardA);
service.add(cardB);
Integer willieMaysId = service.add(cardC);
// test @GET
List<BaseballCard> allCards = service.getAll();
assertNotNull(allCards);
assertTrue(allCards.size() == 3);
assertTrue(allCards.contains(cardA));
assertTrue(allCards.contains(cardB));
assertTrue(allCards.contains(cardC));
// test @PUT
service.update(willieMaysId, cardD); // replace Willie Mays w/ Willie Mays Hayes
allCards = service.getAll();
assertNotNull(allCards);
assertTrue(allCards.size() == 3);
assertFalse(allCards.contains(cardC)); // this one was replaced
assertTrue(allCards.contains(cardD)); // this was the replacement
// test @DELETE
service.delete(willieMaysId); // delete Willie
allCards = service.getAll();
assertNotNull(allCards);
assertTrue(allCards.size() == 2);
assertFalse(allCards.contains(cardD)); // should be gone
// test that adding a card already in the collection in fact adds to the collection.
service.add(cardA);
service.add(cardA);
service.add(cardA);
allCards = service.getAll();
assertTrue(allCards.size() == 5);
try {
service.unannotatedMethod();
fail("Magic? You can't remotely invoke a method that doesn't have JAX-RS annotations in the resource class!");
} catch (Exception e) {
// I expect this to throw an exception
e.printStackTrace();
}
}