filenet.vw.api
Class VWRosterStats
- java.lang.Object
-
- filenet.vw.api.VWRosterStats
-
- All Implemented Interfaces:
- java.io.Serializable
Deprecated.This class has been deprecated since BPM release 4.0. Use Case Analyzer for Workflow Statistics.
public final class VWRosterStats extends java.lang.ObjectUse this class to retrieve roster statistics. The system generates statistics as the result of a request to the log manager to get a copy of the roster statistics.- Since:
- VWWS3.10
- See Also:
VWQueueStats, Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method and Description java.lang.DoublegetAverageLifeSpanChildWO()Deprecated.Gets the average life span of child work objects since the beginning of the time interval.java.lang.DoublegetAverageLifeSpanOfWO()Deprecated.Gets the average life span of work objects since the beginning of the time interval.java.lang.DoublegetAverageLifeSpanParentWO()Deprecated.Gets the average life span of parent work objects since the beginning of the time interval.java.lang.DoublegetAverageNumberOfActiveChildWO()Deprecated.Gets the ratio of the sum of child work objects that are alive in the system to the number of samples taken.java.lang.DoublegetAverageNumberOfActiveParentWO()Deprecated.Gets the ratio of the sum of parent work objects that are alive in the system to the number of samples taken.java.lang.DoublegetAverageNumberOfActiveWO()Deprecated.Gets the ratio of the sum of work objects that are alive in the system to the number of samples taken.java.lang.DoublegetChildCreationRate()Deprecated.Gets the rate at which the application created child work objects in the time interval, based on the time units entered.java.lang.DoublegetChildrenGrowRate()Deprecated.Gets the rate at which child work objects grew in the system; the rate indicates the relationship as a ratio of the creation rate to the termination rate.java.lang.DoublegetChildTerminationRate()Deprecated.Gets the rate at which the application terminated child work objects in the time interval, based on the time units entered.java.lang.StringgetClassName()Deprecated.Provides the name of the class (Queue or Roster) whose statistics are to be retrieved.java.util.DategetEndTime()Deprecated.Gets the time the evaluated request completed on the server.java.util.DategetEvaluationTime()Deprecated.Gets the timestamp for the evaluation period for the request.java.lang.DoublegetInitialNumberOfWO()Deprecated.Gets the number of work objects at the beginning of the time interval.java.lang.DoublegetNumberOfActiveChildWO()Deprecated.Determines how many active child work objects existed at the sample point.java.lang.DoublegetNumberOfActiveParentWO()Deprecated.Determines how many active parent work objects existed at the sample point.java.lang.DoublegetNumberOfCreatedChildWO()Deprecated.Determines how many child work objects the application created within the time interval.java.lang.DoublegetNumberOfCreatedParentWO()Deprecated.Determines how many parent work objects the application created within the time interval.java.lang.DoublegetNumberOfInitialChildWO()Deprecated.Gets the initial number of child work objects at the beginning of the time interval.java.lang.DoublegetNumberOfInitialParentWO()Deprecated.Gets the number of parent work objects at the beginning of the time interval.java.lang.DoublegetNumberOfRemainingChildWO()Deprecated.Gets the number of child work objects that are still active at the end of the time interval.java.lang.DoublegetNumberOfRemainingParentWO()Deprecated.Gets the number of parent work objects that are alive at the end of the time interval.java.lang.DoublegetNumberOfSamples()Deprecated.Gets a number that indicates the number of samples taken within the interval.java.lang.DoublegetNumberOfTerminatedChildWO()Deprecated.Determines how many child work objects the application terminated since the beginning of the time interval.java.lang.DoublegetNumberOfTerminatedParentWO()Deprecated.Determines how many parent work objects the application terminated since the beginning of the time interval.java.lang.DoublegetNumberOfUnitsInPeriod()Deprecated.Gets a count that indicates the number of units in the given time interval.java.lang.DoublegetParentCreationRate()Deprecated.Gets the rate at which the application created parent work objects in the time interval, based on the time units entered.java.lang.DoublegetParentGrowRate()Deprecated.Gets the rate at which parent work objects grew in the system; the grow rate is the relationship defined as the ratio of the creation rate to the termination rate.java.lang.DoublegetParentTerminationRate()Deprecated.Gets the rate at which the application terminated parent work objects in the time interval, based on the time units entered.java.util.DategetRequestedEndTime()Deprecated.Gets the time value the user specified as the end time for the queue statistics evaluation.java.util.DategetRequestedStartTime()Deprecated.Gets the time value the user specified as the start time for the queue statistics evaluation.intgetRequestedTimeUnit()Deprecated.Gets evaluation period unit of measure (or interval) specified by the user (for example: minutes, hours, days, etc.).java.lang.StringgetRosterName()Deprecated.Gets the name of the roster for the statistics being retrieved.java.util.DategetStartTime()Deprecated.Gets the time the evaluated request began on the server.java.lang.DoublegetSummationActiveChild()Deprecated.Determines how many child work objects are alive in the system.java.lang.DoublegetSummationActiveParent()Deprecated.Determines how many parent work objects are alive in the system.java.lang.DoublegetSummationActiveWO()Deprecated.Determines how many work objects are alive in the system.java.lang.DoublegetSummationChildLifeSpan()Deprecated.Gets the life span of the child work objects.java.lang.DoublegetSummationParentLifeSpan()Deprecated.Gets the life span of the parent work objects.java.lang.DoublegetSummationWOLifeSpan()Deprecated.Gets the life span of the work objects.java.lang.DoublegetTotalCreationRate()Deprecated.Gets the rate at which the application created work objects in the time interval, based on the time units entered.java.lang.DoublegetTotalGrowRate()Deprecated.Gets the rate at which work objects grew in the system; the grow rate is the relationship defined as the ratio of the creation rate to the termination rate.java.lang.DoublegetTotalNumberOfActiveWO()Deprecated.Determines how many active work objects existed at the sample point.java.lang.DoublegetTotalNumberOfCreatedWO()Deprecated.Determines how many work objects the application created within the time interval.java.lang.DoublegetTotalNumberOfRemainingWO()Deprecated.Gets the number of work objects that are alive at the end of the time interval.java.lang.DoublegetTotalNumberOfTerminatedWO()Deprecated.Determines how many work objects the application terminated since the beginning of the time interval.java.lang.DoublegetTotalTerminationRate()Deprecated.Gets the rate at which the application terminated work objects in the time interval, based on the time units entered.java.lang.StringtoString()Deprecated.Gets the work class name and the interval start and end times in a specific string format.
-
-
-
Method Detail
-
getEvaluationTime
public java.util.Date getEvaluationTime()
Deprecated.Gets the timestamp for the evaluation period for the request.- Returns:
- A date value that represents a timestamp of when the application evaluated the request on the server.
-
getStartTime
public java.util.Date getStartTime()
Deprecated.Gets the time the evaluated request began on the server. The start time and end time, which can be requested with getEndTime(), may be different than the times requested by the caller; these time values are based on the actual snapshot stored on the database.- Returns:
- A time value indicating the time the request began.
-
getEndTime
public java.util.Date getEndTime()
Deprecated.Gets the time the evaluated request completed on the server. The end time and start time, which can be requested with getStartTime(), may be different than the times requested by the caller; these time values are based on the actual snapshot stored on the database.- Returns:
- A time value indicating the time the request completed.
-
getRequestedStartTime
public java.util.Date getRequestedStartTime()
Deprecated.Gets the time value the user specified as the start time for the queue statistics evaluation.- Returns:
- A time value indicating the start time requested by a user.
-
getRequestedEndTime
public java.util.Date getRequestedEndTime()
Deprecated.Gets the time value the user specified as the end time for the queue statistics evaluation.- Returns:
- A time value indicating the end time requested by a user.
-
getRequestedTimeUnit
public int getRequestedTimeUnit()
Deprecated.Gets evaluation period unit of measure (or interval) specified by the user (for example: minutes, hours, days, etc.).- Returns:
- An integer value indicating the unit of measurement
for the time value. Valid integer values are as follows:
- 1: Minutes
- 2: Hours
- 3: Days
- 4: Weeks
- 5: Months
- 6: Years
- See Also:
VWTimeUnitType
-
getNumberOfUnitsInPeriod
public java.lang.Double getNumberOfUnitsInPeriod()
Deprecated.Gets a count that indicates the number of units in the given time interval. The statistics are evaluated by the unit of measurement specified by the user.- Returns:
- A number value indicating the units that are adjusted by the specified unit of time (or interval).
-
getNumberOfSamples
public java.lang.Double getNumberOfSamples()
Deprecated.Gets a number that indicates the number of samples taken within the interval.- Returns:
- An integer value indicating the total number of samples taken during the evaluation period.
-
getRosterName
public java.lang.String getRosterName()
Deprecated.Gets the name of the roster for the statistics being retrieved. If a translation source exists, the authored name is translated.- Returns:
- A String containing the translated name of the roster being sampled for statistical information, if a translation source exists; otherwise the authored information is returned.
-
getInitialNumberOfWO
public java.lang.Double getInitialNumberOfWO()
Deprecated.Gets the number of work objects at the beginning of the time interval.- Returns:
- An integer value that indicates the number of work objects at the beginning of the time interval.
-
getNumberOfInitialParentWO
public java.lang.Double getNumberOfInitialParentWO()
Deprecated.Gets the number of parent work objects at the beginning of the time interval. The application creates child work objects from a split operation, but it does not split parent work objects.- Returns:
- The number of parent work objects at the beginning of the time interval.
-
getNumberOfInitialChildWO
public java.lang.Double getNumberOfInitialChildWO()
Deprecated.Gets the initial number of child work objects at the beginning of the time interval. Child work objects are derived from a split operation. (A parent that is also a child is counted only as a child.)- Returns:
- The number of child work objects at the beginning of the time interval.
-
getTotalNumberOfRemainingWO
public java.lang.Double getTotalNumberOfRemainingWO()
Deprecated.Gets the number of work objects that are alive at the end of the time interval.- Returns:
- The number of work objects remaining at the end of the time interval.
-
getNumberOfRemainingParentWO
public java.lang.Double getNumberOfRemainingParentWO()
Deprecated.Gets the number of parent work objects that are alive at the end of the time interval.- Returns:
- The number of parent work objects remaining at the end of the time interval.
-
getNumberOfRemainingChildWO
public java.lang.Double getNumberOfRemainingChildWO()
Deprecated.Gets the number of child work objects that are still active at the end of the time interval.- Returns:
- The number of child work objects remaining at the end of the time interval.
-
getTotalNumberOfCreatedWO
public java.lang.Double getTotalNumberOfCreatedWO()
Deprecated.Determines how many work objects the application created within the time interval.- Returns:
- A number that indicates the total number of work objects created during the evaluation interval.
-
getNumberOfCreatedParentWO
public java.lang.Double getNumberOfCreatedParentWO()
Deprecated.Determines how many parent work objects the application created within the time interval.- Returns:
- The number of parent work objects created within the evaluation interval.
-
getNumberOfCreatedChildWO
public java.lang.Double getNumberOfCreatedChildWO()
Deprecated.Determines how many child work objects the application created within the time interval.- Returns:
- The number of child work objects created within the time interval.
-
getTotalNumberOfTerminatedWO
public java.lang.Double getTotalNumberOfTerminatedWO()
Deprecated.Determines how many work objects the application terminated since the beginning of the time interval.- Returns:
- The number of work objects terminated since the beginning of the time interval.
-
getNumberOfTerminatedParentWO
public java.lang.Double getNumberOfTerminatedParentWO()
Deprecated.Determines how many parent work objects the application terminated since the beginning of the time interval.- Returns:
- The number of parent work objects terminated since the beginning of the time interval.
-
getNumberOfTerminatedChildWO
public java.lang.Double getNumberOfTerminatedChildWO()
Deprecated.Determines how many child work objects the application terminated since the beginning of the time interval.- Returns:
- The number of child work objects terminated since the beginning of the time interval.
-
getTotalCreationRate
public java.lang.Double getTotalCreationRate()
Deprecated.Gets the rate at which the application created work objects in the time interval, based on the time units entered.- Returns:
- A number that indicates the rate at which the application created work objects.
-
getParentCreationRate
public java.lang.Double getParentCreationRate()
Deprecated.Gets the rate at which the application created parent work objects in the time interval, based on the time units entered.- Returns:
- A number that indicates the rate at which the application created parent work objects.
-
getChildCreationRate
public java.lang.Double getChildCreationRate()
Deprecated.Gets the rate at which the application created child work objects in the time interval, based on the time units entered.- Returns:
- A number that indicates the rate at which the application created child work objects.
-
getTotalTerminationRate
public java.lang.Double getTotalTerminationRate()
Deprecated.Gets the rate at which the application terminated work objects in the time interval, based on the time units entered.- Returns:
- A number that indicates the rate at which the application terminated work objects.
-
getParentTerminationRate
public java.lang.Double getParentTerminationRate()
Deprecated.Gets the rate at which the application terminated parent work objects in the time interval, based on the time units entered.- Returns:
- A number that indicates the rate at which the application terminated parent work objects.
-
getChildTerminationRate
public java.lang.Double getChildTerminationRate()
Deprecated.Gets the rate at which the application terminated child work objects in the time interval, based on the time units entered.- Returns:
- new Double( A number that indicates the rate at which the application terminated child work objects.
-
getTotalGrowRate
public java.lang.Double getTotalGrowRate()
Deprecated.Gets the rate at which work objects grew in the system; the grow rate is the relationship defined as the ratio of the creation rate to the termination rate.- Returns:
- A number that indicates the rate at which work objects grew in the system.
-
getParentGrowRate
public java.lang.Double getParentGrowRate()
Deprecated.Gets the rate at which parent work objects grew in the system; the grow rate is the relationship defined as the ratio of the creation rate to the termination rate.- Returns:
- A number that indicates the rate at which parent work objects grew in the system.
-
getChildrenGrowRate
public java.lang.Double getChildrenGrowRate()
Deprecated.Gets the rate at which child work objects grew in the system; the rate indicates the relationship as a ratio of the creation rate to the termination rate.- Returns:
- A number that indicates the rate at which child work objects grew in the system.
-
getSummationWOLifeSpan
public java.lang.Double getSummationWOLifeSpan()
Deprecated.Gets the life span of the work objects.- Returns:
- A number that indicates the life span of the work objects.
-
getSummationParentLifeSpan
public java.lang.Double getSummationParentLifeSpan()
Deprecated.Gets the life span of the parent work objects.- Returns:
- A number that indicates the life span of the parent work objects.
-
getSummationChildLifeSpan
public java.lang.Double getSummationChildLifeSpan()
Deprecated.Gets the life span of the child work objects.- Returns:
- A number that indicates the life span of the child work objects.
-
getAverageNumberOfActiveWO
public java.lang.Double getAverageNumberOfActiveWO()
Deprecated.Gets the ratio of the sum of work objects that are alive in the system to the number of samples taken.- Returns:
- A number that indicates the ratio of active work objects to number of samples taken.
-
getAverageNumberOfActiveParentWO
public java.lang.Double getAverageNumberOfActiveParentWO()
Deprecated.Gets the ratio of the sum of parent work objects that are alive in the system to the number of samples taken.- Returns:
- A number that indicates the ratio of active parent work objects to number of samples taken.
-
getAverageNumberOfActiveChildWO
public java.lang.Double getAverageNumberOfActiveChildWO()
Deprecated.Gets the ratio of the sum of child work objects that are alive in the system to the number of samples taken.- Returns:
- A number that indicates the ratio of active child work objects to number of samples taken.
-
getAverageLifeSpanOfWO
public java.lang.Double getAverageLifeSpanOfWO()
Deprecated.Gets the average life span of work objects since the beginning of the time interval.- Returns:
- A number that indicates the average life span of work objects since the beginning of the interval.
-
getAverageLifeSpanParentWO
public java.lang.Double getAverageLifeSpanParentWO()
Deprecated.Gets the average life span of parent work objects since the beginning of the time interval.- Returns:
- A number that indicates the average life span of parent work objects since the beginning of the interval.
-
getAverageLifeSpanChildWO
public java.lang.Double getAverageLifeSpanChildWO()
Deprecated.Gets the average life span of child work objects since the beginning of the time interval.- Returns:
- A number that indicates the average life span of child work objects since the beginning of the interval.
-
getSummationActiveWO
public java.lang.Double getSummationActiveWO()
Deprecated.Determines how many work objects are alive in the system.- Returns:
- The number of work objects that are alive in the system.
-
getSummationActiveParent
public java.lang.Double getSummationActiveParent()
Deprecated.Determines how many parent work objects are alive in the system.- Returns:
- The number of parent work objects that are alive in the system.
-
getSummationActiveChild
public java.lang.Double getSummationActiveChild()
Deprecated.Determines how many child work objects are alive in the system.- Returns:
- The number of child work objects that are alive in the system.
-
getTotalNumberOfActiveWO
public java.lang.Double getTotalNumberOfActiveWO()
Deprecated.Determines how many active work objects existed at the sample point.- Returns:
- The number of active work objects at the sample point.
-
getNumberOfActiveParentWO
public java.lang.Double getNumberOfActiveParentWO()
Deprecated.Determines how many active parent work objects existed at the sample point.- Returns:
- The number of active parent work objects at the sample point.
-
getNumberOfActiveChildWO
public java.lang.Double getNumberOfActiveChildWO()
Deprecated.Determines how many active child work objects existed at the sample point.- Returns:
- The number of active child work objects at the sample point.
-
toString
public java.lang.String toString()
Deprecated.Gets the work class name and the interval start and end times in a specific string format. The format is as follows:"<RosterName> from <StartTime> to <EndTime>".
- Overrides:
toStringin classjava.lang.Object- Returns:
- The name of the work object.
-
getClassName
public java.lang.String getClassName()
Deprecated.Provides the name of the class (Queue or Roster) whose statistics are to be retrieved.- Returns:
- The name of the class (Queue or Roster)
-
-