Class ExtendedOperationResultCodeInfo
java.lang.Object
com.unboundid.ldap.sdk.unboundidds.monitors.ExtendedOperationResultCodeInfo
- All Implemented Interfaces:
Serializable
@NotMutable
@ThreadSafety(level=COMPLETELY_THREADSAFE)
public final class ExtendedOperationResultCodeInfo
extends Object
implements Serializable
This class provides a data structure that provides information about the
result codes associated with various types of extended operations.
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 a map with the human-readable names for each type of extended request, indexed by request OID, if available.Retrieves the number of extended operations of all types that resulted in failure, if available.Retrieves the number of extended operations of each type that resulted in failure, indexed by extended request OID, if available.Retrieves the percent of extended operations of all types that resulted in failure, if available.Retrieves the percent of extended operations of each type that resulted in failure, indexed by extended request OID, if available.Retrieves a map with information about the result codes that have been returned for extended operations of each type, indexed first by extended request OID, and then by the result code's integer value.Retrieves the total number of extended operations of all types that have been processed, if available.Retrieves the number of extended operations of each type that have been processed, indexed by extended request OID, if available.
-
Method Details
-
getTotalCount
Retrieves the total number of extended operations of all types that have been processed, if available.- Returns:
- The total number of extended operations of all types that have
been processed, or
nullif this information was not in the monitor entry.
-
getTotalCountsByOID
Retrieves the number of extended operations of each type that have been processed, indexed by extended request OID, if available.- Returns:
- The number of extended operations of each type that have been processed, or an empty map if this information was not in the monitor entry.
-
getFailedCount
Retrieves the number of extended operations of all types that resulted in failure, if available.- Returns:
- The number of extended operations of all types that resulted in
failure, or
nullif this information was not in the monitor entry.
-
getFailedCountsByOID
Retrieves the number of extended operations of each type that resulted in failure, indexed by extended request OID, if available.- Returns:
- The number of extended operations of each type that resulted in failure, or an empty map if this information was not in the monitor entry.
-
getFailedPercent
Retrieves the percent of extended operations of all types that resulted in failure, if available.- Returns:
- The percent of extended operations of all types that resulted in
failure, or
nullif this information was not in the monitor entry.
-
getFailedPercentsByOID
Retrieves the percent of extended operations of each type that resulted in failure, indexed by extended request OID, if available.- Returns:
- The percent of extended operations of each type that resulted in failure, or an empty map if this information was not in the monitor entry.
-
getResultCodeInfoMap
Retrieves a map with information about the result codes that have been returned for extended operations of each type, indexed first by extended request OID, and then by the result code's integer value.- Returns:
- A map with information about the result codes that have been returned for extended operations of each type, or an empty map if this information was not in the monitor entry.
-
getExtendedRequestNamesByOID
Retrieves a map with the human-readable names for each type of extended request, indexed by request OID, if available.- Returns:
- A map with the human-readable names for each type of extended request, or an empty map if this information was not in the monitor entry.
-