KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > smile > stored > ProcedureInterface


1 package smile.stored;
2
3 import java.util.*;
4 import java.sql.*;
5
6 /**
7  * ProcedureInterface is an interface that all procedures called by packageTags
8  * must implement.
9  *
10  * Copyright 2002 Smile Les motoristes Internet http://www.smile.fr/ Contact
11  * cofax@smile.fr for further information
12  *
13  * @author Smile Les motoristes Internet
14  *
15  */

16
17 public interface ProcedureInterface {
18
19     public void init(HashMap initData, Connection con);
20
21     public void setTargetDataStore(String JavaDoc pTargetDataStore);
22
23     public void execute() throws SQLException;
24
25     public ResultSet getResultSet() throws SQLException;
26
27     public void close() throws SQLException;
28 }
Popular Tags