Class OperationResultCodeInfo
java.lang.Object
com.unboundid.ldap.sdk.unboundidds.monitors.OperationResultCodeInfo
- All Implemented Interfaces:
Serializable
@NotMutable
@ThreadSafety(level=COMPLETELY_THREADSAFE)
public final class OperationResultCodeInfo
extends Object
implements Serializable
This class provides a data structure that provides information about the
result codes associated with a particular type of operation (or across all
types of operations, if the associated operation type is
null).
NOTE: This class, and other classes within the
com.unboundid.ldap.sdk.unboundidds package structure, are only
supported for use against Ping Identity, UnboundID, and
Nokia/Alcatel-Lucent 8661 server products. These classes provide support
for proprietary functionality or for external specifications that are not
considered stable or mature enough to be guaranteed to work in an
interoperable way with other types of LDAP servers.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionRetrieves the number of operations of the associated type that resulted in failure, if available.Retrieves the percent of operations of the associated type that resulted in failure, if available.Retrieves the type of operation with which this result code information is associated, if appropriate.Retrieves a map with information about the result codes that have been returned for operations of the associated type, indexed by the result code's integer value.Retrieves the total number of operations of the associated type that have been processed, if available.
-
Method Details
-
getOperationType
Retrieves the type of operation with which this result code information is associated, if appropriate.- Returns:
- The type of operation with which this result code information is
associated, or
nullif this information applies to all types of operations.
-
getTotalCount
Retrieves the total number of operations of the associated type that have been processed, if available.- Returns:
- The total number of operations of the associated type that have
been processed, or
nullif this information was not in the monitor entry.
-
getFailedCount
Retrieves the number of operations of the associated type that resulted in failure, if available.- Returns:
- The number of operations of the associated type that resulted
in failure, or
nullif this information was not in the monitor entry.
-
getFailedPercent
Retrieves the percent of operations of the associated type that resulted in failure, if available.- Returns:
- The percent of operations of the associated type that resulted
in failure, or
nullif this information was not in the monitor entry.
-
getResultCodeInfoMap
Retrieves a map with information about the result codes that have been returned for operations of the associated type, indexed by the result code's integer value.- Returns:
- A map with information about the result codes that have been returned for operations of the associated type.
-