Package org.eclipse.orion.server.cf.objects

Examples of org.eclipse.orion.server.cf.objects.Target.toJSON()


          if (target == null) {
            String msg = "Target not set"; //$NON-NLS-1$
            return new ServerStatus(IStatus.ERROR, HttpServletResponse.SC_NOT_FOUND, msg, null);
          }

          return new ServerStatus(Status.OK_STATUS, HttpServletResponse.SC_OK, target.toJSON());
        } catch (JSONException 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


              return result;
          }

          CFActivator.getDefault().getTargetRegistry().markDefault(this.userId, target);

          return new ServerStatus(Status.OK_STATUS, HttpServletResponse.SC_OK, target.toJSON());
        } 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
Copyright © 2018 www.massapi.com. 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.