CollTuxedobaK.java
1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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;
}
}