Package org.jboss.ejb.client
Class TransactionID
java.lang.Object
org.jboss.ejb.client.TransactionID
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
UserTransactionID,XidTransactionID
Deprecated.
Retained only for protocol compatibility.
A transaction ID for an invocation. Transaction IDs can be stored in multiple formats with different
characteristics.
- Author:
- David M. Lloyd
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final classDeprecated.Serialized representation of a transaction ID. -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionstatic TransactionIDcreateTransactionID(byte[] encoded) Deprecated.Create a transaction ID object for the given encoded representation.final booleanDeprecated.Determine whether this object is equal to another.byte[]Deprecated.Get a copy of the encoded form of this transaction ID.protected byte[]Deprecated.Get the encoded form of this transaction ID.final inthashCode()Deprecated.toString()Deprecated.protected final ObjectDeprecated.Substitute this transaction ID with a serialized representation.
-
Field Details
-
PRIVATE_DATA_KEY
Deprecated.- See Also:
-
-
Method Details
-
getEncodedForm
public byte[] getEncodedForm()Deprecated.Get a copy of the encoded form of this transaction ID.- Returns:
- the copy of the encoded form
-
getEncodedFormRaw
protected byte[] getEncodedFormRaw()Deprecated.Get the encoded form of this transaction ID. Note that callers must take care to avoid modifying the encoded form.- Returns:
- the encoded form
-
equals
Deprecated.Determine whether this object is equal to another. Transaction IDs are equal if their encoded form is equal and the class is equal. -
hashCode
public final int hashCode()Deprecated. -
toString
Deprecated. -
createTransactionID
Deprecated.Create a transaction ID object for the given encoded representation.- Parameters:
encoded- the encoded representation- Returns:
- the transaction ID object
-
writeReplace
Deprecated.Substitute this transaction ID with a serialized representation.- Returns:
- the serialized representation
-