public interface BaseballCardCollectionService
Modifier and Type | Method and Description |
---|---|
Integer |
add(BaseballCard card)
Add a card to the collection.
|
void |
delete(Integer id)
delete the card with the given identifier.
|
BaseballCard |
get(Integer id)
gets a card by it's (arbitrary) identifier
|
List<BaseballCard> |
get(String playerName)
gets all the cards in the collection with the given player name
|
List<BaseballCard> |
getAll() |
void |
unannotatedMethod()
This method lacks JAX-RS annotations
|
void |
update(Integer id,
BaseballCard card)
update the card for the given identifier.
|
List<BaseballCard> getAll()
BaseballCard get(Integer id)
List<BaseballCard> get(String playerName)
Integer add(BaseballCard card)
void update(Integer id, BaseballCard card)
void unannotatedMethod()
Copyright © 2005–2016 The Kuali Foundation. All rights reserved.