Ejemplo n.º 1
0
 public void outboxCompleted() {
   cookies.add(OUTBOX_COMPLETED, Boolean.toString(true));
 }
Ejemplo n.º 2
0
 public boolean hasOutboxCompleted() {
   return Boolean.parseBoolean(cookies.getValue(OUTBOX_COMPLETED));
 }
Ejemplo n.º 3
0
 public String lastPlayedMessageId() {
   return cookies.getValue(LAST_PLAYED_VOICE_MESSAGE_ID);
 }
Ejemplo n.º 4
0
 public void lastPlayedMessageId(String messageId) {
   cookies.add(LAST_PLAYED_VOICE_MESSAGE_ID, messageId);
 }
Ejemplo n.º 5
0
 public OutboxContext(KooKooIVRContext kooKooIVRContext) {
   this.kooKooIVRContext = kooKooIVRContext;
   this.cookies = kooKooIVRContext.cookies();
   this.request = kooKooIVRContext.httpRequest();
   cookies.add(OUTBOX_COMPLETED, Boolean.toString(false));
 }