Package org.cyclos.impl.banking
Class AccountVerificationPollingTask
- java.lang.Object
-
- org.cyclos.impl.AbstractServerComponent
-
- org.cyclos.impl.AbstractGlobalServerComponent
-
- org.cyclos.impl.utils.tasks.AbstractTask
-
- org.cyclos.impl.utils.tasks.AbstractPollingTask
-
- org.cyclos.impl.utils.tasks.SimplePollingTask
-
- org.cyclos.impl.banking.AccountVerificationPollingTask
-
- All Implemented Interfaces:
Runnable,PollingTask,HasMessageKey
@Component public class AccountVerificationPollingTask extends SimplePollingTask
APollingTaskwhich verifies accounts. It actually does 3 things:- On first execution, rebuilds all closed account balances using
NativeQueryHandler.rebuildClosedAccountBalances() - Closes balances since the last closing using
NativeQueryHandler.closeAccountBalances() - Fixes any inconsistent account balances using
NativeQueryHandler#fixInconsistentAccountBalances()
-
-
Field Summary
-
Fields inherited from class org.cyclos.impl.utils.tasks.AbstractTask
clusterHandler, errorLogService, invokerHandler, loggingHandler
-
Fields inherited from class org.cyclos.impl.AbstractGlobalServerComponent
rawEntityManagerHandler
-
Fields inherited from class org.cyclos.impl.AbstractServerComponent
accountHandler, configurationHandler, dataTranslationHandler, notificationHandler, profileFieldHandler, transactionHandler, translationHandler
-
-
Constructor Summary
Constructors Constructor Description AccountVerificationPollingTask()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected longexecute()Executes the task batch.PollingTaskFirstExecutiongetFirstExecution()Returns the polling task first executionMessageKeygetMessageKey()PollingTaskRecurrencegetRecurrence()Return the polling task recurrenceprotected booleanisRunInTransaction()Return whether the execute method must be ran in a transaction or not.-
Methods inherited from class org.cyclos.impl.utils.tasks.SimplePollingTask
doRun, notifyIssueToLicense, notifyIssueToLicense
-
Methods inherited from class org.cyclos.impl.utils.tasks.AbstractPollingTask
getStorage, isVerbose, logName, run, toString
-
Methods inherited from class org.cyclos.impl.utils.tasks.AbstractTask
getLogConfiguration, getName, logTaskError, logTaskSuccess, resolveName, shouldGenerateErrorLog
-
Methods inherited from class org.cyclos.impl.AbstractGlobalServerComponent
getBaseEntityManagerHandler, getEntityManager
-
Methods inherited from class org.cyclos.impl.AbstractServerComponent
dataTranslationProxy, dataTranslationProxy, delete, detach, doDataTranslationProxy, find, flush, from, getApplicationContext, getFormatter, getFormatter, getFormatter, getLogger, getRemoteAddress, getSessionData, mailContentBuilder, message, message, persist, processBatch, processBatch, refresh, remove, selectFrom, subQuery, update
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.cyclos.impl.utils.tasks.PollingTask
getName
-
-
-
-
Method Detail
-
getFirstExecution
public PollingTaskFirstExecution getFirstExecution()
Description copied from interface:PollingTaskReturns the polling task first execution- Specified by:
getFirstExecutionin interfacePollingTask- Overrides:
getFirstExecutionin classAbstractPollingTask
-
getMessageKey
public MessageKey getMessageKey()
-
getRecurrence
public PollingTaskRecurrence getRecurrence()
Description copied from interface:PollingTaskReturn the polling task recurrence- Specified by:
getRecurrencein interfacePollingTask- Overrides:
getRecurrencein classAbstractPollingTask
-
execute
protected long execute() throws ThrowableDescription copied from class:SimplePollingTaskExecutes the task batch. This method must be idempotent, which means that subsequent invocations should not cause side effects. For example, a task could expire data up to the current hour. If executed several times within any given hour, only the first execution should change data, while others should not affect anything. Should return the number of affected records- Specified by:
executein classSimplePollingTask- Throws:
Throwable
-
isRunInTransaction
protected boolean isRunInTransaction()
Description copied from class:SimplePollingTaskReturn whether the execute method must be ran in a transaction or not. By default a transaction is opened before execute the method.- Overrides:
isRunInTransactionin classSimplePollingTask
-
-