1 23 24 29 30 package com.sun.enterprise.admin.monitor.callflow; 31 32 import java.sql.Connection ; 33 import java.sql.PreparedStatement ; 34 import java.sql.SQLException ; 35 36 42 public interface TableAccessObject { 43 44 public boolean createTable(Connection connection); 45 public boolean dropTable(Connection connection); 46 47 public boolean insert(PreparedStatement pstmt, TransferObject[] transferObject); 48 49 public String getInsertSQL(); 50 51 public String getDeleteSQL (); 52 53 public String getServerInstanceName (); 54 55 58 public boolean delete (PreparedStatement pstmt, String [] requestId); 59 } 60 | Popular Tags |