本文整理汇总了Java中org.kuali.rice.ksb.messaging.remotedservices.BaseballCard类的典型用法代码示例。如果您正苦于以下问题:Java BaseballCard类的具体用法?Java BaseballCard怎么用?Java BaseballCard使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
BaseballCard类属于org.kuali.rice.ksb.messaging.remotedservices包,在下文中一共展示了BaseballCard类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testJaxRsService
import org.kuali.rice.ksb.messaging.remotedservices.BaseballCard; //导入依赖的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: add
import org.kuali.rice.ksb.messaging.remotedservices.BaseballCard; //导入依赖的package包/类
/**
* @see org.kuali.rice.ksb.messaging.remotedservices.BaseballCardCollectionService#add(org.kuali.rice.ksb.messaging.remotedservices.BaseballCard)
*/
public Integer add(BaseballCard card) {
Integer result = null;
if (card != null) {
int id = nextId.addAndGet(1);
cards.put(id, card);
result = id;
}
return result;
}
示例3: get
import org.kuali.rice.ksb.messaging.remotedservices.BaseballCard; //导入依赖的package包/类
/**
* @see org.kuali.rice.ksb.messaging.remotedservices.BaseballCardCollectionService#get(java.lang.String)
*/
public List<BaseballCard> get(String playerName) {
List<BaseballCard> results = new ArrayList<BaseballCard>();
for (BaseballCard card : cards.values()) {
if (playerName.equals(card.getPlayerName())) results.add(card);
}
return results;
}
示例4: getAll
import org.kuali.rice.ksb.messaging.remotedservices.BaseballCard; //导入依赖的package包/类
/**
* @see org.kuali.rice.ksb.messaging.remotedservices.BaseballCardCollectionService#getAll()
*/
public List<BaseballCard> getAll() {
// excuse me while we exploit this service to test service call version headers
// annotations on impl not supported by RESTServiceExporter/RestServiceDefinition
ServiceCallInformationHolder.multiValues = (Map<String, List<String>>)PhaseInterceptorChain.getCurrentMessage().get(Message.PROTOCOL_HEADERS);
return new ArrayList<BaseballCard>(cards.values());
}
示例5: getAll
import org.kuali.rice.ksb.messaging.remotedservices.BaseballCard; //导入依赖的package包/类
/**
* @see org.kuali.rice.ksb.messaging.remotedservices.BaseballCardCollectionService#getAll()
*/
public List<BaseballCard> getAll() {
// excuse me while we exploit this service to test service call version headers
// annotations on impl not supported by RESTServiceExporter/RestServiceDefinition
//ServiceCallInformationHolder.stuff.put("capturedHeaders", headers.getRequestHeaders());
ServiceCallInformationHolder.stuff.put("capturedHeaders", PhaseInterceptorChain.getCurrentMessage().get(Message.PROTOCOL_HEADERS));
return new ArrayList<BaseballCard>(cards.values());
}
示例6: testBaseballCardCollectionService
import org.kuali.rice.ksb.messaging.remotedservices.BaseballCard; //导入依赖的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();
}
}
示例7: update
import org.kuali.rice.ksb.messaging.remotedservices.BaseballCard; //导入依赖的package包/类
/**
* @see org.kuali.rice.ksb.messaging.remotedservices.BaseballCardCollectionService#update(java.lang.Integer, org.kuali.rice.ksb.messaging.remotedservices.BaseballCard)
*/
public void update(Integer id, BaseballCard card) {
cards.put(id, card);
}