package at.gv.egovernment.moa.spss.server.logging;
/**
* An implementation of the iaik.logging.TransactionId
interface.
*
* @author Patrick Peck
* @version $Id$
*/
public class TransactionId implements iaik.logging.TransactionId {
/** The String representation for logging the transaction ID. */
private String logID;
/**
* Create a TransactionId
object.
*
* @param logID The transaction id as it should be presented to the logging
* subsystem.
*/
public TransactionId(String logID) {
this.logID = logID;
}
/**
* @see iaik.logging.TransactionId#getLogID()
*/
public String getLogID() {
return logID;
}
/**
* @see java.lang.Object#toString()
*/
public String toString() {
return getLogID();
}
}