/* * Copyright 2005 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.maven.svnlib; import org.apache.maven.changelog.ChangeLogFactory; import org.apache.maven.changelog.ChangeLogParser; import org.apache.maven.changelog.ChangeLogGenerator; /** * A Subversion implementation of the {@link org.apache.maven.ChangeLogFactory} * which overcomess Subversion Bug 752. * * This implementation uses the svn log command to retrieve ALL log entries * and then filters out those not in the specified date range. * * @author Niall Pemberton * @version $Id$ * @see Subversion Bug 752 */ public class SvnBug752ChangeLogFactory implements ChangeLogFactory { /** * Default no-arg constructor. */ public SvnBug752ChangeLogFactory() { } /** * Create a ChangeLogGenerator. * * @return A Subversion ChangeLogGenerator that uses * a Date-Revision index. */ public ChangeLogGenerator createGenerator() { return new SvnBug752ChangeLogGenerator(); } /** * Create a ChangeLogParser. * * @return A Subversion specific ChangeLogParser */ public ChangeLogParser createParser() { return new SvnChangeLogParser(); } }