CollTuxedoWithCMDMBean.java
650 Bytes
package com.sitech.ismp.coll;
/**
* 弃用,可能是因为最后一位为大写,导致mbean server无法注册该bean
* 现在使用 CollTuxedoWithShell
*/
public abstract interface CollTuxedoWithCMDMBean {
//////////////////// Attributes ////////////////////
public java.util.Vector getConfiguration(java.util.HashMap params) throws Exception;
public java.util.Vector getPerformance(java.util.HashMap params) throws Exception;
public java.util.Vector getConfiguration(String IP,String username,String password) throws Exception;
public java.util.Vector getPerformance(String IP,String username,String password) throws Exception;
}