Esempio n. 1
0
 public void lastPlayedMessageId(String messageId) {
   cookies.add(LAST_PLAYED_VOICE_MESSAGE_ID, messageId);
 }
Esempio n. 2
0
 public void outboxCompleted() {
   cookies.add(OUTBOX_COMPLETED, Boolean.toString(true));
 }
Esempio n. 3
0
 public OutboxContext(KooKooIVRContext kooKooIVRContext) {
   this.kooKooIVRContext = kooKooIVRContext;
   this.cookies = kooKooIVRContext.cookies();
   this.request = kooKooIVRContext.httpRequest();
   cookies.add(OUTBOX_COMPLETED, Boolean.toString(false));
 }