Package org.gitlab.api.models

Examples of org.gitlab.api.models.GitlabBranch


        return Arrays.asList(branches);
    }
   
    public GitlabBranch getBranch(GitlabProject project, String branchName) throws IOException {
      String tailUrl = GitlabProject.URL + "/" + project.getId() + GitlabBranch.URL + branchName;
        GitlabBranch branch = retrieve().to(tailUrl, GitlabBranch.class);
        return branch;
    }
View Full Code Here

TOP

Related Classes of org.gitlab.api.models.GitlabBranch

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.