Package org.eclipse.jgit.http.server.resolver

Examples of org.eclipse.jgit.http.server.resolver.DefaultUploadPackFactory


  @Before
  public void setUp() throws Exception {
    super.setUp();

    db = createBareRepository();
    factory = new DefaultUploadPackFactory();
  }
View Full Code Here


  protected void setUp() throws Exception {
    super.setUp();

    db = createBareRepository();
    factory = new DefaultUploadPackFactory();
  }
View Full Code Here

    /**
     * But pull access is open to anyone
     */
    @Override
    public UploadPack createUploadPack(HttpServletRequest context, Repository db) throws ServiceNotEnabledException, ServiceNotAuthorizedException {
        return new DefaultUploadPackFactory().create(context,db);
    }
View Full Code Here

TOP

Related Classes of org.eclipse.jgit.http.server.resolver.DefaultUploadPackFactory

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.