Uses of Class
org.opends.server.types.AdditionalLogItem
-
Packages that use AdditionalLogItem Package Description org.forgerock.opendj.server.core Classes implementing a Grizzly basedConnectionHandler
using reactive api.org.opends.server.types Contains implementations for a number of Directory Server data types.org.opends.server.types.operation Contains a number of interfaces that are implemented by the various types of Directory Server operations. -
-
Uses of AdditionalLogItem in org.forgerock.opendj.server.core
Methods in org.forgerock.opendj.server.core that return types with arguments of type AdditionalLogItem Modifier and Type Method Description List<AdditionalLogItem>
RequestContext. getAdditionalLogItems()
Returns additional information to be logged, as a potentially emptyList
ofAdditionalLogItem
.Methods in org.forgerock.opendj.server.core with parameters of type AdditionalLogItem Modifier and Type Method Description void
RequestContext. addAdditionalItem(AdditionalLogItem item)
Adds aAdditionalLogItem
to the list for logging.Method parameters in org.forgerock.opendj.server.core with type arguments of type AdditionalLogItem Modifier and Type Method Description void
RequestContext. setAdditionalItems(List<AdditionalLogItem> items)
Sets theAdditionalLogItem
s. -
Uses of AdditionalLogItem in org.opends.server.types
Methods in org.opends.server.types that return AdditionalLogItem Modifier and Type Method Description static AdditionalLogItem
AdditionalLogItem. keyOnly(Class<?> source, String key)
Creates a new additional log item using the provided source and key, but no value.static AdditionalLogItem
AdditionalLogItem. quotedKeyValue(Class<?> source, String key, Object value)
Creates a new additional log item using the provided source, key, and value.static AdditionalLogItem
AdditionalLogItem. unquotedKeyValue(Class<?> source, String key, Object value)
Creates a new additional log item using the provided source, key, and value.Methods in org.opends.server.types that return types with arguments of type AdditionalLogItem Modifier and Type Method Description List<AdditionalLogItem>
Operation. getAdditionalLogItems()
Methods in org.opends.server.types with parameters of type AdditionalLogItem Modifier and Type Method Description void
Operation. addAdditionalLogItem(AdditionalLogItem item)
-
Uses of AdditionalLogItem in org.opends.server.types.operation
Methods in org.opends.server.types.operation that return types with arguments of type AdditionalLogItem Modifier and Type Method Description List<AdditionalLogItem>
InProgressOperation. getAdditionalLogItems()
Returns an unmodifiable list containing the additional log items for this operation, which should be written to the log but not included in the response to the client.List<AdditionalLogItem>
PostOperationOperation. getAdditionalLogItems()
Returns an unmodifiable list containing the additional log items for this operation, which should be written to the log but not included in the response to the client.List<AdditionalLogItem>
PostResponseOperation. getAdditionalLogItems()
Returns an unmodifiable list containing the additional log items for this operation, which should be written to the log but not included in the response to the client.List<AdditionalLogItem>
PostSynchronizationOperation. getAdditionalLogItems()
Returns an unmodifiable list containing the additional log items for this operation, which should be written to the log but not included in the response to the client.List<AdditionalLogItem>
PreOperationOperation. getAdditionalLogItems()
Returns an unmodifiable list containing the additional log items for this operation, which should be written to the log but not included in the response to the client.List<AdditionalLogItem>
PreParseOperation. getAdditionalLogItems()
Returns an unmodifiable list containing the additional log items for this operation, which should be written to the log but not included in the response to the client.Methods in org.opends.server.types.operation with parameters of type AdditionalLogItem Modifier and Type Method Description void
InProgressOperation. addAdditionalLogItem(AdditionalLogItem item)
Adds an additional log item to this operation, which should be written to the log but not included in the response to the client.void
PostOperationOperation. addAdditionalLogItem(AdditionalLogItem item)
Adds an additional log item to this operation, which should be written to the log but not included in the response to the client.void
PreOperationOperation. addAdditionalLogItem(AdditionalLogItem item)
Adds an additional log item to this operation, which should be written to the log but not included in the response to the client.void
PreParseOperation. addAdditionalLogItem(AdditionalLogItem item)
Adds an additional log item to this operation, which should be written to the log but not included in the response to the client.
-