001 /* 002 * Copyright 2011 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 */ 016 package org.kuali.kfs.module.cam.batch; 017 018 import java.io.Serializable; 019 import java.sql.Date; 020 021 /** 022 * Object representation of collector xml input. 023 */ 024 public class BarcodeInventory implements Serializable { 025 private String campusTagNumber; 026 private String inventoryScannedCode; 027 private Date createDate; 028 private String campusCode; 029 private String buildingCode; 030 private String buildingRoomNumber; 031 private String buildingSubRoomNumber; 032 private String conditionCode; 033 private String inventoryStatusCode; 034 035 036 /** 037 * Constructs a CollectorBatch 038 */ 039 public BarcodeInventory() { 040 } 041 042 public String getCampusTagNumber() { 043 return campusTagNumber; 044 } 045 046 public void setCampusTagNumber(String campusTagNumber) { 047 this.campusTagNumber = campusTagNumber; 048 } 049 050 public String getInventoryScannedCode() { 051 return inventoryScannedCode; 052 } 053 054 public void setInventoryScannedCode(String inventoryScannedCode) { 055 this.inventoryScannedCode = inventoryScannedCode; 056 } 057 058 public Date getCreateDate() { 059 return createDate; 060 } 061 062 public void setCreateDate(Date createDate) { 063 this.createDate = createDate; 064 } 065 066 public String getCampusCode() { 067 return campusCode; 068 } 069 070 public void setCampusCode(String campusCode) { 071 this.campusCode = campusCode; 072 } 073 074 public String getBuildingCode() { 075 return buildingCode; 076 } 077 078 public void setBuildingCode(String buildingCode) { 079 this.buildingCode = buildingCode; 080 } 081 082 public String getBuildingRoomNumber() { 083 return buildingRoomNumber; 084 } 085 086 public void setBuildingRoomNumber(String buildingRoomNumber) { 087 this.buildingRoomNumber = buildingRoomNumber; 088 } 089 090 public String getBuildingSubRoomNumber() { 091 return buildingSubRoomNumber; 092 } 093 094 public void setBuildingSubRoomNumber(String buildingSubRoomNumber) { 095 this.buildingSubRoomNumber = buildingSubRoomNumber; 096 } 097 098 public String getConditionCode() { 099 return conditionCode; 100 } 101 102 public void setConditionCode(String conditionCode) { 103 this.conditionCode = conditionCode; 104 } 105 106 107 public String getInventoryStatusCode() { 108 return inventoryStatusCode; 109 } 110 111 public void setInventoryStatusCode(String inventoryStatusCode) { 112 this.inventoryStatusCode = inventoryStatusCode; 113 } 114 }