Interface LoggingAwareExecuter
-
- All Known Implementing Classes:
AbstractRenderingEngine,AbstractTransformationRenderingEngine,ActionExecuterAbstractBase,AddFailedThumbnailActionExecuter,AddFeaturesActionExecuter,BaseTemplateRenderingEngine,CancelWorkflowActionExecuter,CheckInActionExecuter,CheckOutActionExecuter,CompositeActionExecuter,CompositeRenderingEngine,ContentMetadataEmbedder,ContentMetadataExtracter,CopyActionExecuter,CountChildrenActionExecuter,CounterIncrementActionExecuter,CreateDownloadArchiveAction,CreateThumbnailActionExecuter,CreateTransferTargetActionExecuter,CreateVersionActionExecuter,DeleteRenditionActionExecuter,ErrorProneActionExecutor,ExecuteAllRulesActionExecuter,ExporterActionExecuter,FreemarkerRenderingEngine,HTMLRenderingEngine,ImageRenderingEngine,ImageTransformActionExecuter,ImporterActionExecuter,LinkCategoryActionExecuter,LinkRules,MailActionExecuter,MoveActionExecuter,PerformRenditionActionExecuter,QuickShareLinkExpiryActionExecutor,ReformatRenderingEngine,RefreshTagScopeActionExecuter,RemoveFeaturesActionExecuter,ReorderRules,ReplicationActionExecutor,RepositoryExporterActionExecuter,ScriptActionExecuter,SetPropertyValueActionExecuter,SimpleWorkflowActionExecuter,SpecialiseTypeActionExecuter,StartWorkflowActionExecuter,TakeOwnershipActionExecuter,TikaPoweredContainerExtractor.ExtractorActionExecutor,TransferAsyncAction,TransferCommitActionExecuter,TransferOneNodeActionExecuter,TransferTreeActionExecuter,TransferTreeWithCancelActionExecuter,TransformActionExecuter,TransitionSimpleWorkflowActionExecuter,UnlinkRules,UpdateTagScopesActionExecuter,UpdateThumbnailActionExecuter,XSLTRenderingEngine
public interface LoggingAwareExecuter
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanonLogException(org.apache.commons.logging.Log logger, java.lang.Throwable t, java.lang.String message)Optional logging of errors callback for the action executer for the cases when the error might be ignored or shown in a different manner for the action
-
-
-
Method Detail
-
onLogException
boolean onLogException(org.apache.commons.logging.Log logger, java.lang.Throwable t, java.lang.String message)Optional logging of errors callback for the action executer for the cases when the error might be ignored or shown in a different manner for the action- Parameters:
logger- the loggert- the exception thrownmessage- the proposed message that will be logged- Returns:
- true if it was handled, false for default handling
-
-