Package org.apache.ivory.resource.InstancesResult

Examples of org.apache.ivory.resource.InstancesResult.InstanceAction


      if (filePath.getName().equals("oozie.log")) {
        instance.logFile = dfsBrowserUrl;
        continue;
      }

      InstanceAction instanceAction = new InstanceAction(
          getActionName(filePath.getName()),
          getActionStatus(filePath.getName()), dfsBrowserUrl);
      instanceActions[i++] = instanceAction;
    }
View Full Code Here


        instance, "0");
    Assert.assertEquals(
        instance.logFile,
        "http://localhost:50070/data/workflow/staging/ivory/workflows/process/testProcess/logs/job-2010-01-01-01-00/000/oozie.log");

    InstanceAction action = instanceWithLog.actions[0];
    Assert.assertEquals(action.action, "mr_Action2");
    Assert.assertEquals(action.status, "SUCCEEDED");
    Assert.assertEquals(
        action.logFile,
        "http://localhost:50070/data/workflow/staging/ivory/workflows/process/testProcess/logs/job-2010-01-01-01-00/000/mr_Action2_SUCCEEDED.log");
View Full Code Here

TOP

Related Classes of org.apache.ivory.resource.InstancesResult.InstanceAction

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.