예제 #1
0
파일: Status.java 프로젝트: koskedk/mirth
 /**
  * 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());
 }