Package org.eclipse.orion.server.git.jobs

Examples of org.eclipse.orion.server.git.jobs.PullJob


  private boolean pull(HttpServletRequest request, HttpServletResponse response, GitCredentialsProvider cp, String path, boolean force)
      throws URISyntaxException, JSONException, IOException, ServletException {
    Path p = new Path(path); // /{file}/{path}
    Object cookie = request.getAttribute(GitConstants.KEY_SSO_TOKEN);
    PullJob job = new PullJob(TaskJobHandler.getUserId(request), cp, p, force, cookie);
    return TaskJobHandler.handleTaskJob(request, response, job, statusHandler, JsonURIUnqualificationStrategy.ALL_NO_GIT);
  }
View Full Code Here

TOP

Related Classes of org.eclipse.orion.server.git.jobs.PullJob

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.