Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* Copyright 2017 Axway Software
*
* 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 com.axway.ats.log.autodb.model;
import java.util.List;
import com.axway.ats.log.autodb.CheckpointInfo;
import com.axway.ats.log.autodb.exceptions.DatabaseAccessException;
public interface IDbWriteAccess {
/**
* Insert a new run in the database
*
* @param runName
* name of the run
* @param osName
* name of the OS
* @param productName
* name of the product
* @param versionName
* version of the product
* @param buildName
* build version
* @param timestamp
* @param hostName
* name/IP of the machine , from which the run was started
* @return
*/
public int startRun( String runName, String osName, String productName, String versionName,
String buildName, long timestamp, String hostName,
boolean closeConnection ) throws DatabaseAccessException;
/**
* End a run in the database
*
* @param timestamp
* @param runId
*/
public void endRun( long timestamp, int runId, boolean closeConnection ) throws DatabaseAccessException;
/**
* Update the static information about an existing run
*
* @param runId
* @param runName
* @param osName
* @param productName
* @param versionName
* @param buildName
* @param userNote
* @param hostName
* @throws DatabaseAccessException
*/
public void updateRun( int runId, String runName, String osName, String productName, String versionName,
String buildName, String userNote, String hostName,
boolean closeConnection ) throws DatabaseAccessException;
public void deleteTestcase(
List