com.ibm.ws.tpv.advisor.utils

Class AdvisorChartData

  1. java.lang.Object
  2. extended bycom.ibm.ws.tpv.advisor.utils.AdvisorChartData
All implemented interfaces:
java.io.Serializable

  1. public class AdvisorChartData
  2. extends java.lang.Object
  3. implements java.io.Serializable
See Also:
Serialized Form

Constructor Summary

Constructor and Description
AdvisorChartData()

Method Summary

Modifier and Type Method and Description
  1. long
getCpuUsageIdle()
  1. java.lang.String
getCpuUsageName()
  1. long
getCpuUsageUsed()
  1. long[]
getDataSourceConnectionsIdle()
  1. long[]
getDataSourceConnectionsUsed()
  1. java.lang.String[]
getDataSourceNames()
  1. java.lang.String[]
getDataSourceTypes()
  1. double
getEjbContainerRequestsPerSecond()
  1. double
getEjbContainerResponseTime()
  1. long[]
getThreadPoolConnectionsIdle()
  1. long[]
getThreadPoolConnectionsUsed()
  1. java.lang.String[]
getThreadPoolNames()
  1. java.lang.String[]
getThreadPoolTypes()
  1. double
getWebContainerRequestsPerSecond()
  1. double
getWebContainerResponseTime()
  1. boolean
isCpuUsageAvailable()
  1. boolean
isDataSourcesAvailable()
  1. boolean
isEjbContainerAvailable()
  1. boolean
isThreadPoolsAvailable()
  1. boolean
isWebContainerAvailable()
  1. void
setCpuUsageAvailable(boolean cpuUsageAvailable)
  1. void
setCpuUsageIdle(long cpuUsageIdle)
  1. void
setCpuUsageName(java.lang.String cpuUsageName)
  1. void
setCpuUsageUsed(long cpuUsageUsed)
  1. void
setDataSourceConnectionsIdle(long[] dataSourceConnectionsIdle)
  1. void
setDataSourceConnectionsUsed(long[] dataSourceConnectionsUsed)
  1. void
setDataSourceNames(java.lang.String[] dataSourceNames)
  1. void
setDataSourcesAvailable(boolean dataSourcesAvailable)
  1. void
setDataSourceTypes(java.lang.String[] dataSourceTypes)
  1. void
setEjbContainerAvailable(boolean ejbContainerAvailable)
  1. void
setEjbContainerRequestsPerSecond(double ejbContainerRequestsPerSecond)
  1. void
setEjbContainerResponseTime(double ejbContainerResponseTime)
  1. void
setThreadPoolConnectionsIdle(long[] threadPoolConnectionsIdle)
  1. void
setThreadPoolConnectionsUsed(long[] threadPoolConnectionsUsed)
  1. void
setThreadPoolNames(java.lang.String[] threadPoolNames)
  1. void
setThreadPoolsAvailable(boolean threadPoolsAvailable)
  1. void
setThreadPoolTypes(java.lang.String[] threadPoolTypes)
  1. void
setWebContainerAvailable(boolean webContainerAvailable)
  1. void
setWebContainerRequestsPerSecond(double webContainerRequestsPerSecond)
  1. void
setWebContainerResponseTime(double webContainerResponseTime)
  1. java.lang.String
toString()
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait

Constructor Detail

AdvisorChartData

  1. public AdvisorChartData()

Method Detail

getCpuUsageIdle

  1. public long getCpuUsageIdle()
Returns:
Returns the idle time of the cpu usage.

setCpuUsageIdle

  1. public void setCpuUsageIdle(long cpuUsageIdle)
Parameters:
cpuUsageIdle - Sets the idle time of cpu usage.

getCpuUsageName

  1. public java.lang.String getCpuUsageName( )
Returns:
Returns a name for the cpu usage.

setCpuUsageName

  1. public void setCpuUsageName(java.lang.String cpuUsageName)
Parameters:
cpuUsageName - Sets a name for the cpu usage.

getCpuUsageUsed

  1. public long getCpuUsageUsed()
Returns:
Returns the used time of the cpu usage.

setCpuUsageUsed

  1. public void setCpuUsageUsed(long cpuUsageUsed)
Parameters:
cpuUsageUsed - Sets the used time of the cpu usage.

getDataSourceConnectionsIdle

  1. public long[] getDataSourceConnectionsIdle( )
Returns:
Returns the idle connections for a datasource.

setDataSourceConnectionsIdle

  1. public void setDataSourceConnectionsIdle( long[] dataSourceConnectionsIdle)
Parameters:
dataSourceConnectionsIdle - Sets the idle connections for a datasource.

getDataSourceConnectionsUsed

  1. public long[] getDataSourceConnectionsUsed( )
Returns:
Returns the used connections for a datasource.

setDataSourceConnectionsUsed

  1. public void setDataSourceConnectionsUsed( long[] dataSourceConnectionsUsed)
Parameters:
dataSourceConnectionsUsed - Sets the used connections for a datasource.

getDataSourceNames

  1. public java.lang.String[] getDataSourceNames( )
Returns:
Returns the names of all the datasources.

getDataSourceTypes

  1. public java.lang.String[] getDataSourceTypes( )
Returns:
Returns the types of all the datasources.

setDataSourceNames

  1. public void setDataSourceNames( java.lang.String[] dataSourceNames)
Parameters:
dataSourceNames - Sets names for the available datasources.

setDataSourceTypes

  1. public void setDataSourceTypes( java.lang.String[] dataSourceTypes)
Parameters:
dataSourceTypes - Sets types for the available datasources.

getThreadPoolConnectionsIdle

  1. public long[] getThreadPoolConnectionsIdle( )
Returns:
Returns the idle connections of the thread pool.

setThreadPoolConnectionsIdle

  1. public void setThreadPoolConnectionsIdle( long[] threadPoolConnectionsIdle)
Parameters:
threadPoolConnectionsIdle - Sets the idle connections for thread pool.

getThreadPoolConnectionsUsed

  1. public long[] getThreadPoolConnectionsUsed( )
Returns:
Returns the used connections of the threadpool.

setThreadPoolConnectionsUsed

  1. public void setThreadPoolConnectionsUsed( long[] threadPoolConnectionsUsed)
Parameters:
threadPoolConnectionsUsed - Sets the used connections for the thread pool.

getThreadPoolNames

  1. public java.lang.String[] getThreadPoolNames( )
Returns:
Returns the names of thread pool.

getThreadPoolTypes

  1. public java.lang.String[] getThreadPoolTypes( )
Returns:
Returns the types of the thread pool.

setThreadPoolNames

  1. public void setThreadPoolNames( java.lang.String[] threadPoolNames)
Parameters:
threadPoolNames - Sets the names for the thread pools.

setThreadPoolTypes

  1. public void setThreadPoolTypes( java.lang.String[] threadPoolTypes)
Parameters:
threadPoolTypes - Sets the types for the thread pools.

getEjbContainerRequestsPerSecond

  1. public double getEjbContainerRequestsPerSecond( )
Returns:
Returns the requests received by the ejb container in one second.

setEjbContainerRequestsPerSecond

  1. public void setEjbContainerRequestsPerSecond( double ejbContainerRequestsPerSecond)
Parameters:
ejbContainerRequestsPerSecond - Sets the requests per second received by the ejb container.

getEjbContainerResponseTime

  1. public double getEjbContainerResponseTime( )
Returns:
Returns the response time of the ejb container.

setEjbContainerResponseTime

  1. public void setEjbContainerResponseTime( double ejbContainerResponseTime)
Parameters:
ejbContainerResponseTime - Sets the ejb container response time.

getWebContainerRequestsPerSecond

  1. public double getWebContainerRequestsPerSecond( )
Returns:
Returns the requests received per second by the web container.

setWebContainerRequestsPerSecond

  1. public void setWebContainerRequestsPerSecond( double webContainerRequestsPerSecond)
Parameters:
webContainerRequestsPerSecond - Sets the requests received per second by the web container.

getWebContainerResponseTime

  1. public double getWebContainerResponseTime( )
Returns:
Returns the response time of the web container.

setWebContainerResponseTime

  1. public void setWebContainerResponseTime( double webContainerResponseTime)
Parameters:
webContainerResponseTime - Sets the web container response time.

isCpuUsageAvailable

  1. public boolean isCpuUsageAvailable( )
Returns:
Returns the available time of the cpu usage.

setCpuUsageAvailable

  1. public void setCpuUsageAvailable( boolean cpuUsageAvailable)
Parameters:
cpuUsageAvailable - Sets the available time of the cpu usage.

isDataSourcesAvailable

  1. public boolean isDataSourcesAvailable( )
Returns:
Returns the available data sources.

setDataSourcesAvailable

  1. public void setDataSourcesAvailable( boolean dataSourcesAvailable)
Parameters:
dataSourcesAvailable - Sets the available data sources.

isThreadPoolsAvailable

  1. public boolean isThreadPoolsAvailable( )
Returns:
Returns the available thread pools.

setThreadPoolsAvailable

  1. public void setThreadPoolsAvailable( boolean threadPoolsAvailable)
Parameters:
threadPoolsAvailable - Sets the available thread pools.

isEjbContainerAvailable

  1. public boolean isEjbContainerAvailable( )
Returns:
Returns the ejbContainerAvailable flag.

setEjbContainerAvailable

  1. public void setEjbContainerAvailable( boolean ejbContainerAvailable)
Parameters:
ejbContainerAvailable - Sets the ejbContainerAvailable flag.

isWebContainerAvailable

  1. public boolean isWebContainerAvailable( )
Returns:
Returns the webContainerAvailable flag.

setWebContainerAvailable

  1. public void setWebContainerAvailable( boolean webContainerAvailable)
Parameters:
webContainerAvailable - Sets the webContainerAvailable flag.

toString

  1. public java.lang.String toString( )
Overrides:
toString in class java.lang.Object