Blame view

src/com/sitech/ismp/coll/CollTuxedoWithShellMBean.java 537 Bytes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
package com.sitech.ismp.coll;

public abstract interface CollTuxedoWithShellMBean {

	// ////////////////// 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;

}