1 27 package org.objectweb.speedo.jmx.mbeans; 28 29 import java.util.Collection ; 30 31 37 public interface ConnectionMBean { 38 39 String getConnectionFactoryName(); 40 String getJDBC_Connection_DriverClass(); 41 String getJDBC_Connection_URL(); 42 String getJDBC_Connection_User(); 43 String getJDBC_Connection_MapperName(); 44 45 int getPool_Of_Connection_MaxSize(); 46 void setPool_Of_Connection_MaxSize(int arg0) throws Exception ; 47 48 int getPool_Of_Connection_MinSize(); 49 void setPool_Of_Connection_MinSize(int arg0) throws Exception ; 50 51 long getPool_Of_Connection_Timeout(); 52 void setPool_Of_Connection_Timeout(long arg0); 53 54 long getPool_Of_Connection_TTL(); 55 void setPool_Of_Connection_TTL(long arg0); 56 57 int getPool_Of_Connection_Current_Free_Number(); 58 int getPool_Of_Connection_Current_Used_Number(); 59 int getPool_Of_Connection_Current_Size(); 60 Collection getPool_Of_Connection_User(); 61 62 } 63 | Popular Tags |