| java.lang.Object org.kuali.kfs.batch.AbstractStep org.kuali.module.gl.batch.OrganizationReversionBeginningOfYearStep
OrganizationReversionBeginningOfYearStep | public class OrganizationReversionBeginningOfYearStep extends AbstractStep (Code) | | A step that runs the reversion and carry forward process. The beginning of year version of the process is supposed to be run at
the beginning of a fiscal year, and therefore, it uses prior year accounts instead of current year accounts.
|
Method Summary | |
public boolean | execute(String jobName) Runs the organization reversion process, retrieving parameter, creating the origin entry group for output entries, and
generating the reports on the process. | public void | setOrganizationReversionProcessService(OrganizationReversionProcessService organizationReversionProcessService) Sets the organizationREversionProcessService (not to be confused with the OrganizationReversionService, which doesn't do a
process, but which does all the database stuff associated with OrganizationReversion records; it's off in Chart), which
allows the injection of an implementation of the service. |
execute | public boolean execute(String jobName)(Code) | | Runs the organization reversion process, retrieving parameter, creating the origin entry group for output entries, and
generating the reports on the process.
Parameters: jobName - the name of the job this step is being run as part of true if the job completed successfully, false if otherwise See Also: org.kuali.kfs.batch.Step.execute(java.lang.String) |
setOrganizationReversionProcessService | public void setOrganizationReversionProcessService(OrganizationReversionProcessService organizationReversionProcessService)(Code) | | Sets the organizationREversionProcessService (not to be confused with the OrganizationReversionService, which doesn't do a
process, but which does all the database stuff associated with OrganizationReversion records; it's off in Chart), which
allows the injection of an implementation of the service.
Parameters: organizationReversionProcessService - the implementation of the organizationReversionProcessService to set See Also: org.kuali.module.gl.service.OrganizationReversionProcessService |
|
|