001/* 002 * Copyright 2007 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.gl.batch; 017 018import java.util.List; 019 020import org.kuali.ole.gl.batch.service.EnterpriseFeederService; 021import org.kuali.ole.sys.batch.AbstractWrappedBatchStep; 022import org.kuali.ole.sys.batch.service.WrappedBatchExecutorService.CustomBatchExecutor; 023 024/** 025 * This step executes the enterprise feeder 026 */ 027public class EnterpriseFeedStep extends AbstractWrappedBatchStep { 028 029 private EnterpriseFeederService enterpriseFeederService; 030 031 /** 032 * @see org.kuali.ole.sys.batch.AbstractStep#getRequiredDirectoryNames() 033 */ 034 @Override 035 public List<String> getRequiredDirectoryNames() { 036 return enterpriseFeederService.getRequiredDirectoryNames(); 037 } 038 039 @Override 040 protected CustomBatchExecutor getCustomBatchExecutor() { 041 return new CustomBatchExecutor() { 042 public boolean execute() { 043 enterpriseFeederService.feed("enterpriseFeedJob", true); 044 return true; 045 } 046 }; 047 } 048 049 /** 050 * Sets the enterpriseFeederService attribute value. 051 * 052 * @param enterpriseFeederService The enterpriseFeederService to set. 053 * @see org.kuali.ole.gl.batch.service.EnterpriseFeederService 054 */ 055 public void setEnterpriseFeederService(EnterpriseFeederService enterpriseFeederService) { 056 this.enterpriseFeederService = enterpriseFeederService; 057 } 058 059}