Package evolaris.framework.async.business.communication

Examples of evolaris.framework.async.business.communication.SendTaskListEntry


*
*/
public class SendTaskTableDecorator extends TableDecorator {
 
  public String addRowClass() {
    SendTaskListEntry entry = (SendTaskListEntry)this.getCurrentRowObject();
    if (entry.getPending() == 0 && entry.getSending() == 0) {  // all done
      if (entry.getFailed() == 0) {
        return "success";
      } else {
        return "failure";
      }
    } else {
View Full Code Here

TOP

Related Classes of evolaris.framework.async.business.communication.SendTaskListEntry

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.