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.sys.businessobject; 017 018import org.kuali.rice.krad.bo.TransientBusinessObjectBase; 019 020/** 021 * Object that contains properties used on the batch upload screen. 022 */ 023public class AcquisitionBatchUpload extends TransientBusinessObjectBase { 024 private String batchFilePath; 025 private String batchLoadProfile; 026 private String batchDescription; 027 private String batchInputTypeName; 028 //private String batchDestinationFilePath; 029 030 031 032 /** 033 * Default no-arg constructor. 034 */ 035 public AcquisitionBatchUpload() { 036 037 } 038 039 public String getBatchFilePath() { 040 return batchFilePath; 041 } 042 043 044 public void setBatchFilePath(String batchFilePath) { 045 this.batchFilePath = batchFilePath; 046 } 047 048 049 public String getBatchLoadProfile() { 050 return batchLoadProfile; 051 } 052 053 054 public void setBatchLoadProfile(String batchLoadProfile) { 055 this.batchLoadProfile = batchLoadProfile; 056 } 057 058 059 public String getBatchDescription() { 060 return batchDescription; 061 } 062 063 064 public void setBatchDescription(String batchDescription) { 065 this.batchDescription = batchDescription; 066 } 067 068 069 public String getBatchInputTypeName() { 070 return batchInputTypeName; 071 } 072 073 074 public void setBatchInputTypeName(String batchInputTypeName) { 075 this.batchInputTypeName = batchInputTypeName; 076 } 077 078 /* public String getBatchDestinationFilePath() { 079 return batchDestinationFilePath; 080 } 081 082 083 public void setBatchDestinationFilePath(String batchDestinationFilePath) { 084 this.batchDestinationFilePath = batchDestinationFilePath; 085 }*/ 086 087 088}