| dalma.container.LogRotationPolicy
LogRotationPolicy | public interface LogRotationPolicy (Code) | | Implemented by the application to specify the log preservation policy.
author: Kohsuke Kawaguchi |
Method Summary | |
boolean | keep(Conversation conv) Called to determine if the log data of the given completed
conversation shall be kept or discarded.
Parameters: conv - always non-null, valid completed conversation.true to indicate that this log be kept. |
DEFAULT | final public static LogRotationPolicy DEFAULT(Code) | | Default policy.
Currently it's 7 days from completion, but may change in the future.
|
keep | boolean keep(Conversation conv)(Code) | | Called to determine if the log data of the given completed
conversation shall be kept or discarded.
Parameters: conv - always non-null, valid completed conversation.true to indicate that this log be kept. false to discard. |
|
|