Package com.google.gerrit.server.project

Examples of com.google.gerrit.server.project.CreateProject$Factory


    args.submitType = SubmitType.MERGE_IF_NECESSARY;
    args.branch = Collections.emptyList();
    args.createEmptyCommit = emptyCommit;
    args.permissionsOnly = permissionsOnly;

    final CreateProject createProject = createProjectFactory.create(args);
    createProject.createProject();
    return VoidResult.INSTANCE;
  }
View Full Code Here


        args.contentMerge = contentMerge;
        args.changeIdRequired = requireChangeID;
        args.branch = branch;
        args.createEmptyCommit = createEmptyCommit;

        final CreateProject createProject =
            CreateProjectFactory.create(args);
        createProject.createProject();
      } else {
        List<Project.NameKey> parentCandidates =
            suggestParentCandidatesFactory.create().getNameKeys();

        for (Project.NameKey parent : parentCandidates) {
View Full Code Here

TOP

Related Classes of com.google.gerrit.server.project.CreateProject$Factory

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.