public interface HTTPSessionNotifiable extends Notifiable
Modifier and Type | Field and Description |
---|---|
static org.apache.log4j.Logger |
log
Used for logging.
|
LEVEL_DEBUG, LEVEL_ERROR, LEVEL_INFO, LEVEL_WARN, STR_LEVEL_DEBUG, STR_LEVEL_ERROR, STR_LEVEL_INFO, STR_LEVEL_WARN
Modifier and Type | Method and Description |
---|---|
void |
log(java.lang.String message)
Logs a messgae.
|
void |
sessionUpdated()
Indicates that the session was updated.
|
void |
transactionDeleted(int sequence)
Indicates that something about the session changed,
which necessitates that the view be refreshed.
|
void |
transactionInserted(int sequence)
Indicates that a new transaction was inserted..
|
void |
transactionUpdated(HTTPTransaction transaction)
Indicates that a specific transaction was updated.
|
getLoggingLevel, logDebug, logError, logInfo, logWarn, setLoggingLevel
void log(java.lang.String message)
log
in interface Notifiable
message
- The message to be logged.void sessionUpdated()
void transactionUpdated(HTTPTransaction transaction)
transaction
- An HTTPTransaction
.void transactionDeleted(int sequence)
sequence
- The sequence of the transaction
that was deleted.void transactionInserted(int sequence)