Package org.guvnor.asset.management.backend.model

Examples of org.guvnor.asset.management.backend.model.BranchInfo


        Collection<String> branchNames = repository.getBranches();

        List<BranchInfo> branchInfos = new ArrayList<BranchInfo>();
        for (String branch : branchNames) {
          branchInfos.add(new BranchInfo("default://"+branch+"@"+gitRepo, branch));
        }

        ExecutionResults results = new ExecutionResults();
        results.setData("Branches", branchInfos);
        return results;
View Full Code Here

TOP

Related Classes of org.guvnor.asset.management.backend.model.BranchInfo

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.