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

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


          Target target = CFActivator.getDefault().getTargetRegistry().getTarget(userId, targetUrl);
          if (target == null) {
            return HttpUtil.createErrorStatus(IStatus.WARNING, "CF-TargetNotSet", "Target not set");
          }

          return new GetInfoCommand(this.userId, target.getCloud()).doIt();
        } catch (Exception e) {
          String msg = NLS.bind("Failed to handle request for {0}", path); //$NON-NLS-1$
          ServerStatus status = new ServerStatus(IStatus.ERROR, HttpServletResponse.SC_INTERNAL_SERVER_ERROR, msg, e);
          logger.error(msg, e);
          return status;
View Full Code Here

TOP

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

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.