All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.continuum.dao.BuildResultDao Maven / Gradle / Ivy

There is a newer version: 1.4.2
Show newest version
package org.apache.continuum.dao;

/*
 * 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.continuum.model.project.BuildResult;
import org.apache.maven.continuum.model.project.Project;
import org.apache.maven.continuum.store.ContinuumStoreException;

import java.util.Date;
import java.util.List;
import java.util.Map;

/**
 * @author Emmanuel Venisse
 * @version $Id: BuildResultDao.java 1372260 2012-08-13 04:29:09Z brett $
 */
public interface BuildResultDao
{
    BuildResult getBuildResult( int buildId )
        throws ContinuumStoreException;

    void addBuildResult( Project project, BuildResult build )
        throws ContinuumStoreException;

    void updateBuildResult( BuildResult build )
        throws ContinuumStoreException;

    void removeBuildResult( BuildResult buildResult );

    BuildResult getLatestBuildResultForProject( int projectId );

    BuildResult getLatestBuildResultForProjectWithDetails( int projectId );

    BuildResult getLatestBuildResultForBuildDefinition( int projectId, int buildDefinitionId );

    BuildResult getLatestBuildResultInSuccess( int projectId );

    BuildResult getPreviousBuildResultInSuccess( int projectId, int buildResultId )
        throws ContinuumStoreException;

    long getNbBuildResultsForProject( int projectId );

    /**
     * Returns the list of build results between the fromdate and the buildResult defined by its toBuildResultId
     *
     * @param projectId       The project id
     * @param fromDate        the from date
     * @param tobuildResultId the build result id
     * @return the list of build results
     */
    List getBuildResultsForProjectWithDetails( int projectId, long fromDate, int tobuildResultId );

    /**
     * Returns the number of build results in success since fromDate
     *
     * @param projectId The project id
     * @param fromDate  The from date
     * @return the number of build results
     */
    long getNbBuildResultsInSuccessForProject( int projectId, long fromDate );

    List getBuildResultsForProject( int projectId );

    List getBuildResultsForProject( int projectId, long startIndex, long endIndex );

    /**
     * @param projectId
     * @param startId
     * @return the returned list will contains all BuildResult for this project after the startId
     * @since 1.2
     */
    List getBuildResultsForProjectFromId( int projectId, long startId )
        throws ContinuumStoreException;

    Map getLatestBuildResultsByProjectGroupId( int projectGroupId );

    Map getBuildResultsInSuccessByProjectGroupId( int projectGroupId );

    List getBuildResultByBuildNumber( int projectId, int buildNumber );

    List getBuildResultsByBuildDefinition( int projectId, int buildDefinitionId );

    List getBuildResultsByBuildDefinition( int projectId, int buildDefinitionId, long startIndex,
                                                        long endIndex );

    List getAllBuildsForAProjectByDate( int projectId );

    List getBuildResultsInRange( Date fromDate, Date toDate, int state, String triggeredBy,
                                              int projectGroupId );
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy