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

com.googlecode.jdbcproc.daofactory.impl.block.ICleanable Maven / Gradle / Ivy

There is a newer version: 1.1-35
Show newest version
package com.googlecode.jdbcproc.daofactory.impl.block;

import java.sql.CallableStatement;
import java.sql.SQLException;

import org.springframework.dao.DataAccessException;

/**
 * Interface which is able to cleanup after it finishes its work on a
 * {@link CallableStatement}.
 */
public interface ICleanable {
    /**
     * 
     * 
     * @param aStmt
     * @param aArgs
     * @throws DataAccessException
     * @throws SQLException
     */
    void cleanup(CallableStatement aStmt) throws DataAccessException, SQLException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy