Back to project page swazam.
The source code is released under:
MIT License
If you think the Android project swazam listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package ac.tuwien.sa13.service; /* w w w . ja va2 s .com*/ import java.util.List; import ac.tuwien.sa13.entity.Request; import ac.tuwien.sa13.entity.Transaction; import ac.tuwien.sa13.entity.User; public interface ITransactionService extends IGenericService<Transaction, Long> { Transaction allowRequest(User user, Request request); Transaction rewardUser(User user, Request request); List<Transaction> getTransactions(User user); }