Examples of includeBranchCommits()


Examples of org.apache.jackrabbit.mongomk.impl.action.FetchCommitsAction.includeBranchCommits()

        path = MongoUtil.adjustPath(path);
        maxEntries = maxEntries < 0 ? Integer.MAX_VALUE : maxEntries;

        FetchCommitsAction action = new FetchCommitsAction(nodeStore);
        action.setMaxEntries(maxEntries);
        action.includeBranchCommits(false);

        List<MongoCommit> commits = action.execute();
        List<MongoCommit> history = new ArrayList<MongoCommit>();
        for (int i = commits.size() - 1; i >= 0; i--) {
            MongoCommit commit = commits.get(i);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.