001/*
002 * Copyright 2007-2008 The Kuali Foundation
003 * 
004 * Licensed under the Educational Community License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 * 
008 * http://www.opensource.org/licenses/ecl2.php
009 * 
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016package org.kuali.ole.pdp.batch;
017
018import java.util.Date;
019import java.util.List;
020
021import org.kuali.ole.pdp.batch.service.ExtractPaymentService;
022import org.kuali.ole.sys.batch.AbstractStep;
023
024public class ExtractAchPaymentsStep extends AbstractStep {
025    private static org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(ExtractAchPaymentsStep.class);
026
027    private ExtractPaymentService extractPaymentService;
028
029    /**
030     * @see org.kuali.ole.sys.batch.AbstractStep#prepareStepDirectory()
031     */
032    @Override
033    public List<String> getRequiredDirectoryNames() {
034        return extractPaymentService.getRequiredDirectoryNames();
035    }
036    
037    /**
038     * @see org.kuali.ole.sys.batch.Step#execute(java.lang.String, java.util.Date)
039     */
040    public boolean execute(String jobName, Date jobRunDate) throws InterruptedException {
041        LOG.debug("execute() started");
042
043        extractPaymentService.extractAchPayments();
044
045        return true;
046    }
047
048    public void setExtractPaymentService(ExtractPaymentService eps) {
049        extractPaymentService = eps;
050    }
051}