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 in
javax.management.j2ee.statistics
package.
The PerfDescriptor
is WebSphere 4.0 interface used to represent a PMI module.
This interface is replaced by com.ibm.websphere.pmi.stat.StatDescriptor
.
- public interface PerfDescriptor
- extends java.io.Serializable
Field Summary
Modifier and Type | Field and Description |
---|---|
|
serialVersionUID
Deprecated.
|
Method Summary
Modifier and Type | Method and Description |
---|---|
|
equals(PerfDescriptor pd)
Deprecated. Return true if this descriptor and pd are in the same position
of the descriptor hierarchy.
|
|
getDataDescriptor()
Deprecated. return the data descriptor.
|
|
getDataIds()
Deprecated. Return all the data Ids in this descriptor
|
|
getFullName()
Deprecated. Return a name having the whole hierarchy
node/server/module/...
|
|
getMaxPathLength()
Deprecated. Internal usage only.
|
|
getModuleName()
Deprecated. Return the module name.
|
|
getName()
Deprecated. return the short name that is the lowest level of data hierarchy.
|
|
getName(int pathLength)
Deprecated. Internal usage only.
|
|
getNodeName()
Deprecated. return node name.
|
|
getPath()
Deprecated. Return the data path in an array of Strings
|
|
getServerName()
Deprecated. return server name.
|
|
getType()
Deprecated. Return the type: node, server, module, instance, data
|
|
getType(int pathLength)
Deprecated. Internal usage only.
|
|
isDescendingFrom(PerfDescriptor pd)
Deprecated. Return true if this descriptor decends from pd in the descriptor
hierarchy.
|
|
postInit()
Deprecated. client side call to set members that cannot be done by constructor.
|
|
postInit(java.lang.String dataName)
Deprecated. client side call to set members that cannot be done by constructor.
|
|
toXMLTagEnd(boolean recusive)
Deprecated. Return a XML end tag
|
|
toXMLTagStart(boolean recusive)
Deprecated. Return a XML start tag
|
Field Detail
serialVersionUID
- static final long serialVersionUID
Deprecated.
See Also:
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