Back to project page SMSAlive.
The source code is released under:
Apache License
If you think the Android project SMSAlive 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 com.futuretech.app.smsalive.Application.Services; //www .j av a 2 s . c o m import com.futuretech.app.smsalive.Domain.models.AccountTransaction; import java.util.List; /** * Created by ironhulk on 2014/11/29. */ public interface ApplicationServices { //Pre: Method needs the name of the bank the user receives messages from //Post: Method stores all messages into the database public void insertNewBankMessage(String message); public void initialiseBroadCastReceiver(); public List<AccountTransaction> viewAllAccountTransactions(); }