Examples of asDTO()


Examples of org.apache.forrest.forrestbot.webapp.util.Project.asDTO()

      saveErrors(request, errors);
      return mapping.findForward(Constants.FORWARD_NAME_SUCCESS);
    }
   
    Project p = new Project();
    p.asDTO().setName(project);
    p.loadData();
    p.loadSecurity((String) request.getSession(true).getAttribute("username"));
    if (p.asDTO().getStatus() == Constants.STATUS_RUNNING) {
      log.warn("can't execute " + project + " while still running");
      errors.add("execute", new ActionError("error.project.stillrunning", project));
View Full Code Here

Examples of org.apache.forrest.forrestbot.webapp.util.Project.asDTO()

   
    Project p = new Project();
    p.asDTO().setName(project);
    p.loadData();
    p.loadSecurity((String) request.getSession(true).getAttribute("username"));
    if (p.asDTO().getStatus() == Constants.STATUS_RUNNING) {
      log.warn("can't execute " + project + " while still running");
      errors.add("execute", new ActionError("error.project.stillrunning", project));
      saveErrors(request, errors);
      return mapping.findForward(Constants.FORWARD_NAME_SUCCESS);
    }
View Full Code Here

Examples of org.apache.forrest.forrestbot.webapp.util.Project.asDTO()

      saveErrors(request, errors);
      return mapping.findForward(Constants.FORWARD_NAME_SUCCESS);
    }

    if (build != null && !build.equals("")) {
      if (p.asDTO().isBuildable()) {
        try {
          Executor.build(project);
        } catch (Exception e) {
          log.warn("couldn't build " + project, e);
          errors.add("execute", new ActionError("error.build", project));
View Full Code Here

Examples of org.apache.forrest.forrestbot.webapp.util.Project.asDTO()

        }
      } else {
        errors.add("execute", new ActionError("error.authorization"));
      }
    } else if (deploy != null && !deploy.equals("")) {
      if (p.asDTO().isDeployable()) {
        try {
          Executor.deploy(project);
        } catch (Exception e) {
          log.warn("couldn't deploy " + project, e);
          errors.add("execute", new ActionError("error.deploy", project));
View Full Code Here

Examples of org.apache.forrest.forrestbot.webapp.util.Project.asDTO()

      saveErrors(request, errors);
      return mapping.findForward(Constants.FORWARD_NAME_SUCCESS);
    }
   
    Project p = new Project();
    p.asDTO().setName(project);
    p.loadData();
    p.loadSecurity((String) request.getSession(true).getAttribute("username"));
    if (p.asDTO().getStatus() == Constants.STATUS_RUNNING) {
      log.warn("can't execute " + project + " while still running");
      errors.add("execute", new ActionError("error.project.stillrunning", project));
View Full Code Here

Examples of org.apache.forrest.forrestbot.webapp.util.Project.asDTO()

   
    Project p = new Project();
    p.asDTO().setName(project);
    p.loadData();
    p.loadSecurity((String) request.getSession(true).getAttribute("username"));
    if (p.asDTO().getStatus() == Constants.STATUS_RUNNING) {
      log.warn("can't execute " + project + " while still running");
      errors.add("execute", new ActionError("error.project.stillrunning", project));
      saveErrors(request, errors);
      return mapping.findForward(Constants.FORWARD_NAME_SUCCESS);
    }
View Full Code Here

Examples of org.apache.forrest.forrestbot.webapp.util.Project.asDTO()

      saveErrors(request, errors);
      return mapping.findForward(Constants.FORWARD_NAME_SUCCESS);
    }

    if (build != null && !build.equals("")) {
      if (p.asDTO().isBuildable()) {
        try {
          Executor.build(project);
        } catch (Exception e) {
          log.warn("couldn't build " + project, e);
          errors.add("execute", new ActionError("error.build", project));
View Full Code Here

Examples of org.apache.forrest.forrestbot.webapp.util.Project.asDTO()

        }
      } else {
        errors.add("execute", new ActionError("error.authorization"));
      }
    } else if (deploy != null && !deploy.equals("")) {
      if (p.asDTO().isDeployable()) {
        try {
          Executor.deploy(project);
        } catch (Exception e) {
          log.warn("couldn't deploy " + project, e);
          errors.add("execute", new ActionError("error.deploy", project));
View Full Code Here

Examples of org.apache.forrest.forrestbot.webapp.util.Project.asDTO()

      saveErrors(request, errors);
      return mapping.findForward(Constants.FORWARD_NAME_SUCCESS);
    }
   
    Project p = new Project();
    p.asDTO().setName(project);
    p.loadData();
    p.loadSecurity((String) request.getSession(true).getAttribute("username"));
    if (p.asDTO().getStatus() == Constants.STATUS_RUNNING) {
      log.warn("can't execute " + project + " while still running");
      errors.add("execute", new ActionError("error.project.stillrunning", project));
View Full Code Here

Examples of org.apache.forrest.forrestbot.webapp.util.Project.asDTO()

   
    Project p = new Project();
    p.asDTO().setName(project);
    p.loadData();
    p.loadSecurity((String) request.getSession(true).getAttribute("username"));
    if (p.asDTO().getStatus() == Constants.STATUS_RUNNING) {
      log.warn("can't execute " + project + " while still running");
      errors.add("execute", new ActionError("error.project.stillrunning", project));
      saveErrors(request, errors);
      return mapping.findForward(Constants.FORWARD_NAME_SUCCESS);
    }
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.