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.

  1. public interface PerfDescriptor
  2. extends java.io.Serializable

Field Summary

Modifier and Type Field and Description
  1. static
  2. long
serialVersionUID
Deprecated.

Method Summary

Modifier and Type Method and Description
  1. boolean
equals(PerfDescriptor pd)
Deprecated. Return true if this descriptor and pd are in the same position of the descriptor hierarchy.
  1. com.ibm.ws.pmi.server.DataDescriptor
getDataDescriptor()
Deprecated. return the data descriptor.
  1. int[]
getDataIds()
Deprecated. Return all the data Ids in this descriptor
  1. java.lang.String
getFullName()
Deprecated. Return a name having the whole hierarchy node/server/module/...
  1. int
getMaxPathLength()
Deprecated. Internal usage only.
  1. java.lang.String
getModuleName()
Deprecated. Return the module name.
  1. java.lang.String
getName()
Deprecated. return the short name that is the lowest level of data hierarchy.
  1. java.lang.String
getName(int pathLength)
Deprecated. Internal usage only.
  1. java.lang.String
getNodeName()
Deprecated. return node name.
  1. java.lang.String[]
getPath()
Deprecated. Return the data path in an array of Strings
  1. java.lang.String
getServerName()
Deprecated. return server name.
  1. int
getType()
Deprecated. Return the type: node, server, module, instance, data
  1. int
getType(int pathLength)
Deprecated. Internal usage only.
  1. boolean
isDescendingFrom(PerfDescriptor pd)
Deprecated. Return true if this descriptor decends from pd in the descriptor hierarchy.
  1. void
postInit()
Deprecated. client side call to set members that cannot be done by constructor.
  1. void
postInit(java.lang.String dataName)
Deprecated. client side call to set members that cannot be done by constructor.
  1. java.lang.String
toXMLTagEnd(boolean recusive)
Deprecated. Return a XML end tag
  1. java.lang.String
toXMLTagStart(boolean recusive)
Deprecated. Return a XML start tag

Field Detail

serialVersionUID

  1. static final long serialVersionUID
Deprecated.
See Also:

Method Detail

getNodeName

  1. java.lang.String getNodeName()
Deprecated.
return node name.

getServerName

  1. java.lang.String getServerName( )
Deprecated.
return server name.

getModuleName

  1. java.lang.String getModuleName( )
Deprecated.
Return the module name. If this is server or node descriptor, return null.

getName

  1. java.lang.String getName()
Deprecated.
return the short name that is the lowest level of data hierarchy.

getName

  1. java.lang.String getName(int pathLength)
Deprecated.
Internal usage only.

getMaxPathLength

  1. int getMaxPathLength()
Deprecated.
Internal usage only.

getPath

  1. java.lang.String[] getPath()
Deprecated.
Return the data path in an array of Strings

getDataIds

  1. int[] getDataIds()
Deprecated.
Return all the data Ids in this descriptor

getFullName

  1. java.lang.String getFullName()
Deprecated.
Return a name having the whole hierarchy node/server/module/...

getType

  1. int getType()
Deprecated.
Return the type: node, server, module, instance, data

getType

  1. int getType(int pathLength)
Deprecated.
Internal usage only.

equals

  1. boolean equals(PerfDescriptor pd)
Deprecated.
Return true if this descriptor and pd are in the same position of the descriptor hierarchy.

isDescendingFrom

  1. boolean isDescendingFrom(PerfDescriptor pd)
Deprecated.
Return true if this descriptor decends from pd in the descriptor hierarchy.

toXMLTagStart

  1. java.lang.String toXMLTagStart( boolean recusive)
Deprecated.
Return a XML start tag

toXMLTagEnd

  1. java.lang.String toXMLTagEnd(boolean recusive)
Deprecated.
Return a XML end tag

postInit

  1. 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

  1. 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

  1. 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