Ejemplo n.º 1
0
 public static SmsMessage withdrawalSmsFromStandardChartered() {
   return SmsBuilder.sms().fromStandardChartered().aboutAWithdrawal().create();
 }
Ejemplo n.º 2
0
 public static SmsMessage smsFromBankAboutPurchase(float amount) {
   return SmsBuilder.sms().fromStandardChartered().aboutPurchase(String.valueOf(amount)).create();
 }
Ejemplo n.º 3
0
 public static SmsMessage smsFromStandardChartered() {
   return SmsBuilder.sms().fromStandardChartered().create();
 }
Ejemplo n.º 4
0
 public static SmsMessage smsFromBankAboutSomethingElseThanWithdrawal() {
   return SmsBuilder.sms().fromStandardChartered().aboutDeposit().create();
 }
Ejemplo n.º 5
0
 public static SmsMessage smsFromSomeSourceOtherThanTheBank() {
   return SmsBuilder.sms().fromSourceOtherThanTheBank().create();
 }