blob: cf8e622db0623f1a0f1ee71a0f6cc11765d39d8f [file] [log] [blame]
package org.apache.maven.archiva.reporting.metadata;
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
import org.apache.maven.archiva.database.ArchivaDAO;
import org.apache.maven.archiva.database.ArchivaDatabaseException;
import org.apache.maven.archiva.database.Constraint;
import org.apache.maven.archiva.database.ObjectNotFoundException;
import org.apache.maven.archiva.database.constraints.RepositoryProblemByTypeConstraint;
import org.apache.archiva.model.RepositoryProblem;
import org.apache.maven.archiva.reporting.DataLimits;
import org.apache.maven.archiva.reporting.DynamicReportSource;
import java.util.List;
/**
* MetadataReport
*
* @version $Id$
*
* @plexus.component role="org.apache.maven.archiva.reporting.DynamicReportSource"
* role-hint="metadata"
*/
public class MetadataReport
implements DynamicReportSource<RepositoryProblem>
{
public static final String PROBLEM_TYPE_METADATA = "metadata";
/**
* @plexus.configuration default-value="Metadata Report"
*/
private String name;
/**
* @plexus.requirement role-hint="jdo"
*/
private ArchivaDAO dao;
private Constraint constraint;
public MetadataReport()
{
constraint = new RepositoryProblemByTypeConstraint( PROBLEM_TYPE_METADATA );
}
public List<RepositoryProblem> getData()
throws ObjectNotFoundException, ArchivaDatabaseException
{
return dao.getRepositoryProblemDAO().queryRepositoryProblems( constraint );
}
public List<RepositoryProblem> getData( DataLimits limits )
throws ObjectNotFoundException, ArchivaDatabaseException
{
// TODO: implement limits.
return dao.getRepositoryProblemDAO().queryRepositoryProblems( constraint );
}
public String getName()
{
return name;
}
}