Package org.platformlayer.ops.schedule

Examples of org.platformlayer.ops.schedule.ActionTask


    out.schedule = new JobSchedule();
    out.schedule.base = in.scheduleBase;
    out.schedule.interval = in.scheduleInterval;

    ActionTask task = new ActionTask();
    out.task = task;

    task.target = PlatformLayerKey.parse(in.taskTarget);
    task.endpoint = new EndpointRecord();
    task.endpoint.url = in.taskEndpointUrl;
View Full Code Here


      out.scheduleBase = in.schedule.base;
      out.scheduleInterval = in.schedule.interval;
    }

    if (in.task instanceof ActionTask) {
      ActionTask task = (ActionTask) in.task;

      out.taskTarget = task.target.getUrl();

      if (task.endpoint != null) {
        out.taskEndpointUrl = task.endpoint.url;
View Full Code Here

TOP

Related Classes of org.platformlayer.ops.schedule.ActionTask

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.