com.ibm.websphere.pmi.client
Interface PerfLevelSpec
-
- All Superinterfaces:
- java.io.Serializable
Deprecated.As of 6.0, PMI Client API is replaced with JMX interface and MBean StatisticsProvider model. PMI CpdCollection data structure is replaced by J2EE Performance Data Framework defined injavax.management.j2ee.statisticspackage.The
PerfLevelSpecis WebSphere 4.0 interface used to represent the PMI module instrumentation level. This interface is replaced bycom.ibm.websphere.pmi.stat.StatLevelSpec.
public interface PerfLevelSpec extends java.io.Serializable
-
-
Method Summary
Methods Modifier and Type Method and Description intcomparePath(PerfLevelSpec otherDesc)Deprecated.Returns 0 if sameintcomparePath(java.lang.String[] otherPath)Deprecated.Returns 0 if sameintgetLevel()Deprecated.Get instrumentation level for the pathjava.lang.StringgetModuleName()Deprecated.Get module name in the pathjava.lang.String[]getPath()Deprecated.Get the path of the PerfLevelSpec.java.lang.String[]getShortPath()Deprecated.Get the path without root "pmi" It should look like module.instance....java.lang.StringgetSubmoduleName()Deprecated.Get submodule name in the pathbooleanisSubPath(PerfLevelSpec otherDesc)Deprecated.Returns true if it's path is a subpath of otherDescbooleanisSubPath(java.lang.String[] otherPath)Deprecated.voidsetLevel(int level)Deprecated.Set instrumentation level for the path
-
-
-
Method Detail
-
getPath
java.lang.String[] getPath()
Deprecated.Get the path of the PerfLevelSpec. It has preleading root "pmi".
-
getShortPath
java.lang.String[] getShortPath()
Deprecated.Get the path without root "pmi" It should look like module.instance....
-
comparePath
int comparePath(PerfLevelSpec otherDesc)
Deprecated.Returns 0 if same
-
comparePath
int comparePath(java.lang.String[] otherPath)
Deprecated.Returns 0 if same
-
isSubPath
boolean isSubPath(PerfLevelSpec otherDesc)
Deprecated.Returns true if it's path is a subpath of otherDesc
-
isSubPath
boolean isSubPath(java.lang.String[] otherPath)
Deprecated.
-
getModuleName
java.lang.String getModuleName()
Deprecated.Get module name in the path
-
getSubmoduleName
java.lang.String getSubmoduleName()
Deprecated.Get submodule name in the path
-
getLevel
int getLevel()
Deprecated.Get instrumentation level for the path
-
setLevel
void setLevel(int level)
Deprecated.Set instrumentation level for the path
-
-