1 24 25 package org.objectweb.cjdbc.common.jmx.mbeans; 26 27 import java.sql.SQLException ; 28 29 35 public interface AbstractLoadBalancerMBean 36 { 37 42 int getRAIDbLevel(); 43 44 49 void setRAIDbLevel(int raidbLevel); 50 51 56 int getParsingGranularity(); 57 58 63 void setParsingGranularity(int parsingGranularity); 64 65 72 void setWeight(String name, int w) throws SQLException ; 73 74 79 String getInformation(); 80 } | Popular Tags |