com.ibm.websphere.pmi.client
Interface PerfDescriptor
-
- 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
PerfDescriptoris WebSphere 4.0 interface used to represent a PMI module. This interface is replaced bycom.ibm.websphere.pmi.stat.StatDescriptor.
public interface PerfDescriptor extends java.io.Serializable
-
-
Field Summary
Fields Modifier and Type Field and Description static longserialVersionUIDDeprecated.
-
Method Summary
Methods Modifier and Type Method and Description booleanequals(PerfDescriptor pd)Deprecated.Return true if this descriptor and pd are in the same position of the descriptor hierarchy.com.ibm.ws.pmi.server.DataDescriptorgetDataDescriptor()Deprecated.return the data descriptor.int[]getDataIds()Deprecated.Return all the data Ids in this descriptorjava.lang.StringgetFullName()Deprecated.Return a name having the whole hierarchy node/server/module/...intgetMaxPathLength()Deprecated.Internal usage only.java.lang.StringgetModuleName()Deprecated.Return the module name.java.lang.StringgetName()Deprecated.return the short name that is the lowest level of data hierarchy.java.lang.StringgetName(int pathLength)Deprecated.Internal usage only.java.lang.StringgetNodeName()Deprecated.return node name.java.lang.String[]getPath()Deprecated.Return the data path in an array of Stringsjava.lang.StringgetServerName()Deprecated.return server name.intgetType()Deprecated.Return the type: node, server, module, instance, dataintgetType(int pathLength)Deprecated.Internal usage only.booleanisDescendingFrom(PerfDescriptor pd)Deprecated.Return true if this descriptor decends from pd in the descriptor hierarchy.voidpostInit()Deprecated.client side call to set members that cannot be done by constructor.voidpostInit(java.lang.String dataName)Deprecated.client side call to set members that cannot be done by constructor.java.lang.StringtoXMLTagEnd(boolean recusive)Deprecated.Return a XML end tagjava.lang.StringtoXMLTagStart(boolean recusive)Deprecated.Return a XML start tag
-
-
-
Field Detail
-
serialVersionUID
static final long serialVersionUID
Deprecated.- See Also:
- Constant Field Values
-
-
Method Detail
-
getNodeName
java.lang.String getNodeName()
Deprecated.return node name.
-
getServerName
java.lang.String getServerName()
Deprecated.return server name.
-
getModuleName
java.lang.String getModuleName()
Deprecated.Return the module name. If this is server or node descriptor, return null.
-
getName
java.lang.String getName()
Deprecated.return the short name that is the lowest level of data hierarchy.
-
getName
java.lang.String getName(int pathLength)
Deprecated.Internal usage only.
-
getMaxPathLength
int getMaxPathLength()
Deprecated.Internal usage only.
-
getPath
java.lang.String[] getPath()
Deprecated.Return the data path in an array of Strings
-
getDataIds
int[] getDataIds()
Deprecated.Return all the data Ids in this descriptor
-
getFullName
java.lang.String getFullName()
Deprecated.Return a name having the whole hierarchy node/server/module/...
-
getType
int getType()
Deprecated.Return the type: node, server, module, instance, data
-
getType
int getType(int pathLength)
Deprecated.Internal usage only.
-
equals
boolean equals(PerfDescriptor pd)
Deprecated.Return true if this descriptor and pd are in the same position of the descriptor hierarchy.
-
isDescendingFrom
boolean isDescendingFrom(PerfDescriptor pd)
Deprecated.Return true if this descriptor decends from pd in the descriptor hierarchy.
-
toXMLTagStart
java.lang.String toXMLTagStart(boolean recusive)
Deprecated.Return a XML start tag
-
toXMLTagEnd
java.lang.String toXMLTagEnd(boolean recusive)
Deprecated.Return a XML end tag
-
postInit
void postInit()
Deprecated.client side call to set members that cannot be done by constructor. PmiClient should be the only class to call this method. In general, users should not call it.
-
postInit
void postInit(java.lang.String dataName)
Deprecated.client side call to set members that cannot be done by constructor. PmiClient should be the only class to call this method. In general, users should not call it.
-
getDataDescriptor
com.ibm.ws.pmi.server.DataDescriptor getDataDescriptor()
Deprecated.return the data descriptor. In general, data descriptor will be needed on perfServer instead of on client
-
-