CollTuxedobaK.java 1.03 KB
package com.sitech.ismp.coll;

import java.util.HashMap;
import java.util.Vector;

public class CollTuxedobaK implements CollTuxedoMBeanbak {

	public Vector getConfiguration(HashMap params) throws Exception {
		CollTuxedoWithTuxedoShell collTuxedo = new CollTuxedoWithTuxedoShell();
		return collTuxedo.getConfiguration(params);
	}

	public Vector getConfiguration(String IP, String username, String password)
			throws Exception {
		return null;
	}

	public Vector getPerformance(HashMap params) throws Exception {
		CollTuxedoWithTuxedoShell collTuxedo = new CollTuxedoWithTuxedoShell();
		return collTuxedo.getPerformance(params);
	}

	public Vector getPerformance(String IP, String username, String password)
			throws Exception {
		return null;
	}

	public Vector getOverstock(HashMap params) throws Exception {
		CollTuxedoWithTuxedoShell collTuxedo = new CollTuxedoWithTuxedoShell();
		return collTuxedo.getOverstock(params);
	}

	public Vector getOverstock(String IP, String username, String password)
			throws Exception {
		return null;
	}
}