Package com.acelet.lib

Examples of com.acelet.lib.XmlingToString


  public static String getTaskBrief(Task task) {
    return LoggingConstants.COMMON_DELIMITER + task.name +
      LoggingConstants.COMMON_DELIMITER + getTaskTerm(task) +
      LoggingConstants.COMMON_DELIMITER + translateStatus(task.status) +
      LoggingConstants.COMMON_DELIMITER + task.hostname +
      LoggingConstants.COMMON_DELIMITER + new XmlingToString(task.getJob()).toString();
  }
View Full Code Here


  public static String getChoreBrief(Chore chore) {
    return LoggingConstants.COMMON_DELIMITER + chore.name +
      LoggingConstants.COMMON_DELIMITER + getChoreTerm(chore) +
      LoggingConstants.COMMON_DELIMITER + translateStatus(chore.status) +
      LoggingConstants.COMMON_DELIMITER + chore.hostname +
      LoggingConstants.COMMON_DELIMITER + new XmlingToString(chore.getJob()).toString();
  }
View Full Code Here

      LoggingConstants.COMMON_DELIMITER + chore.hostname +
      LoggingConstants.COMMON_DELIMITER + new XmlingToString(chore.getJob()).toString();
  }

  public static String getChoreTerm(Chore chore) {
    String xmlText = new XmlingToString(chore.getTriggerObject()).toString();
    StringBuffer buffer = new StringBuffer(xmlText);

    buffer.append(";");

    buffer.append(chore.delay);
View Full Code Here

TOP

Related Classes of com.acelet.lib.XmlingToString

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.