Package com.google.apphosting.utils.config

Examples of com.google.apphosting.utils.config.CronXml


  @Override
  public List<CronEntry> cronInfo() {
    try {
      List<CronEntry> result = new ArrayList<CronEntry>();

      CronXml cron = app.getCronXml();
      if (cron == null) {
        return result;
      }
      for (CronXml.Entry entry : cron.getEntries()) {
        result.add(new CronEntryImpl(entry.getUrl(), entry.getDescription(), entry.getSchedule(),
            entry.getTimezone()));
      }
      return result;
    } catch (Throwable t) {
View Full Code Here

TOP

Related Classes of com.google.apphosting.utils.config.CronXml

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.