1 22 23 24 package com.mchange.v2.c3p0.management; 25 26 import java.sql.SQLException ; 27 import java.util.Set ; 28 29 public interface C3P0RegistryManagerMBean 30 { 31 public String [] getAllIdentityTokens(); 32 public Set getAllIdentityTokenized(); 33 public Set getAllPooledDataSources(); 34 35 public int getAllIdentityTokenCount(); 36 public int getAllIdentityTokenizedCount(); 37 public int getAllPooledDataSourcesCount(); 38 39 public String [] getAllIdentityTokenizedStringified(); 40 public String [] getAllPooledDataSourcesStringified(); 41 42 public int getNumPooledDataSources() throws SQLException ; 43 public int getNumPoolsAllDataSources() throws SQLException ; 44 45 public String getC3p0Version(); 46 } | Popular Tags |