1 23 24 29 30 package com.sun.enterprise.admin.monitor.callflow; 31 32 import java.sql.Connection ; 33 import java.util.List ; 34 import java.util.Map ; 35 36 42 public interface DbAccessObject { 43 44 49 public boolean enable (); 50 51 public boolean disable(); 52 53 public boolean clearData(); 54 55 public boolean insert(TransferObject[] transferObject); 56 57 public List <Map <String , String >> getRequestInformation(); 58 59 public List <Map <String , String >> getCallStackInformation (String requestId); 60 61 public Map <String , String > getPieInformation (String requestId); 62 63 public boolean deleteRequestIds (String [] requestIds); 64 65 } 66 | Popular Tags |