Exemple #1
0
 /**
  * Returns true if this status is SENT or FILTERED. Used to determine whether to remove content
  * upon completion of a message.
  */
 public boolean isCompleted() {
   return (status == SENT.getStatusCode()
       || status == FILTERED.getStatusCode()
       || status == TRANSFORMED.getStatusCode());
 }
Exemple #2
0
 @Override
 public String getCategory() {
   return FILTERED.getDisplayName();
 }