Package com.softsizo.explorer.handlers

Examples of com.softsizo.explorer.handlers.SvnLogEntryHandler


        svnClientProvider.authenticate(config.getUsername(), config.getPassword());
    }
   
    protected void exploreRevisionsAuthors(ExtractedData data) throws SVNException {
        logger.info("Retriving revision authors");
        SvnLogEntryHandler logEntryHandler = new SvnLogEntryHandler(data);
      long fromRevision = data.getRevisionRange().getFromRevision();
      long toRevision = data.getRevisionRange().getToRevision();
      svnClientProvider.doLog(
          SVNURL.parseURIDecoded(data.getRepository().getRoot()),
          fromRevision, toRevision, logEntryHandler);
View Full Code Here

TOP

Related Classes of com.softsizo.explorer.handlers.SvnLogEntryHandler

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.