public class TransactionIdControl extends Control
The transaction ID is related to Common Audit : it is used for tracking the processing of a user-interaction as it passes through the Forgerock stack
The control's value is the UTF-8 encoding of the transaction ID.
| Modifier and Type | Field and Description |
|---|---|
static ControlDecoder<TransactionIdControl> |
DECODER
The Control Decoder that can be used to decode this control.
|
| Constructor and Description |
|---|
TransactionIdControl(boolean isCritical,
String transactionId)
Creates a new Transaction Id Control.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getTransactionId()
Retrieves the transaction id associated with this control.
|
void |
toString(StringBuilder buffer)
Appends a string representation of this control to the provided buffer.
|
void |
writeValue(org.forgerock.opendj.io.ASN1Writer writer)
Writes this control's value to an ASN.1 writer.
|
getOID, isCritical, toString, writepublic static final ControlDecoder<TransactionIdControl> DECODER
public TransactionIdControl(boolean isCritical, String transactionId)
isCritical - Indicates whether this control should be considered
critical to the operation processing.transactionId - The id to pass through this control.public void writeValue(org.forgerock.opendj.io.ASN1Writer writer) throws IOException
writeValue in class Controlwriter - The ASN.1 output stream to write to.IOException - If a problem occurs while writing to the stream.public String getTransactionId()
public void toString(StringBuilder buffer)
Copyright © 2010-2018 ForgeRock AS. All Rights Reserved.