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.module.purap.batch; 017 018import org.apache.log4j.Logger; 019import org.kuali.ole.module.purap.businessobject.ElectronicInvoiceLoad; 020import org.kuali.ole.module.purap.service.ElectronicInvoiceHelperService; 021import org.kuali.ole.sys.batch.AbstractStep; 022 023import java.util.Date; 024import java.util.List; 025 026public class ElectronicInvoiceStep extends AbstractStep { 027 028 private static Logger LOG = Logger.getLogger(ElectronicInvoiceStep.class); 029 030 private ElectronicInvoiceHelperService electronicInvoiceHelperService; 031 032 public boolean execute(String jobName, Date jobRunDate) { 033 ElectronicInvoiceLoad load = electronicInvoiceHelperService.loadElectronicInvoices(); 034 return load.containsRejects(); 035 } 036 037 public void setElectronicInvoiceHelperService(ElectronicInvoiceHelperService electronicInvoiceHelperService) { 038 this.electronicInvoiceHelperService = electronicInvoiceHelperService; 039 } 040 041 /** 042 * Override the default implementation to pull the directory path list from the service 043 * 044 * @see org.kuali.ole.sys.batch.AbstractStep#getRequiredDirectoryNames() 045 */ 046 @Override 047 public List<String> getRequiredDirectoryNames() { 048 return electronicInvoiceHelperService.getRequiredDirectoryNames(); 049 } 050}