Package eu.planets_project.services.datatypes.ServiceReport

Examples of eu.planets_project.services.datatypes.ServiceReport.Type


  String stdoutPart = String.format("Standard output:\n%s\n\n",
    toolProcessRunner.getProcessOutputAsString());

  // Default to a service report for a failed execution.
  String statusDescription = "Failed migrating";
  Type messageType = Type.ERROR;
  Status messageStatus = Status.TOOL_ERROR;

  if (toolProcessRunner.getReturnCode() == 0) {
      // Create a service report for a successful execution.
View Full Code Here

TOP

Related Classes of eu.planets_project.services.datatypes.ServiceReport.Type

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.