Package oracle.stellent.ridc.common.util
Class ServiceLog<TConfig extends IdcClientConfig>
java.lang.Object
oracle.stellent.ridc.common.util.ServiceLog<TConfig>
- Type Parameters:
TConfig
- IdcClientConfig for the specific client
ALL LOG MESSAGES IN THIS CLASS ARE ASSUMED TO BE DEBUG OR FINER AND NEED NO I18N
-
Constructor Summary
ConstructorsConstructorDescriptionServiceLog
(TConfig clientConfig, ServiceRequest serviceRequest, DataBinder requestBinder) Create service log. -
Method Summary
Modifier and TypeMethodDescriptiongetLogId()
static TimerProvider
void
Stop the log and do a cleanup, This method should always be in the finally blockvoid
logExceptionResponse
(String message) Logs an Exception Response to a Service Requestvoid
logResponseBinder
(DataBinder binder) void
logStart()
Start the log of this service request processing This method should be in a try block with the logCleanup() called in the finally clausevoid
logStop()
Stop the log of this service request processing This method should be in a try block with the logCleanup() called in the finally clausestatic String
toId
(long i) Just a way to make a very long number a bit shorter for human consumption
-
Constructor Details
-
ServiceLog
Create service log. Creation will start the timer, and optionally log a message. Method logStop() will stop the timer and optionally log a message. Static methods are available for use in other locations but want to keep the same log message formats.- Parameters:
clientConfig
-serviceRequest
-requestBinder
-
-
-
Method Details
-
logStart
public void logStart()Start the log of this service request processing This method should be in a try block with the logCleanup() called in the finally clause -
logStop
public void logStop()Stop the log of this service request processing This method should be in a try block with the logCleanup() called in the finally clause -
logCleanup
public void logCleanup()Stop the log and do a cleanup, This method should always be in the finally block -
logResponseBinder
-
logExceptionResponse
Logs an Exception Response to a Service Request- Parameters:
message
-
-
getLogId
- Returns:
- the id of this servicelog. Since a ServiceRequest holds this object, it can also serve a an ID for the Service Request
-
toId
Just a way to make a very long number a bit shorter for human consumption -
getTimerProvider
-