Package org.eclipse.orion.server.cf.commands

Examples of org.eclipse.orion.server.cf.commands.ComputeTargetCommand


    return new CFJob(request, false) {

      @Override
      protected IStatus performJob() {
        try {
          ComputeTargetCommand computeTargetCommand = new ComputeTargetCommand(userId, targetJSON);
          computeTargetCommand.doIt();
          Target target = computeTargetCommand.getTarget();
          if (target == null)
            return HttpUtil.createErrorStatus(IStatus.WARNING, "CF-TargetNotSet", "Target not set"); //$NON-NLS-1$

          return new GetServiceInstancesCommand(target).doIt();
View Full Code Here

TOP

Related Classes of org.eclipse.orion.server.cf.commands.ComputeTargetCommand

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.