001package org.kuali.ole.ingest.pojo; 002 003/** 004 * OleLocationIngest is a business object class for Location Document 005 */ 006public class OleLocationIngest { 007 008 private String locationCode; 009 private String locationName; 010 private String locationLevelCode; 011 private String parentLocationCode; 012 private String locationId; 013 /** 014 * Gets the locationId attribute. 015 * @return Returns the locationId. 016 */ 017 public String getLocationId() { 018 return locationId; 019 } 020 /** 021 * Sets the locationId attribute value. 022 * @param locationId The locationId to set. 023 */ 024 public void setLocationId(String locationId) { 025 this.locationId = locationId; 026 } 027 /** 028 * Gets the locationCode attribute. 029 * @return Returns the locationCode. 030 */ 031 public String getLocationCode() { 032 033 return locationCode; 034 } 035 /** 036 * Sets the locationCode attribute value. 037 * @param locationCode The locationCode to set. 038 */ 039 public void setLocationCode(String locationCode) { 040 this.locationCode = locationCode; 041 } 042 /** 043 * Gets the locationName attribute. 044 * @return Returns the locationName. 045 */ 046 public String getLocationName() { 047 return locationName; 048 } 049 /** 050 * Sets the locationName attribute value. 051 * @param locationName The locationName to set. 052 */ 053 public void setLocationName(String locationName) { 054 this.locationName = locationName; 055 } 056 /** 057 * Gets the locationLevelCode attribute. 058 * @return Returns the locationLevelCode. 059 */ 060 public String getLocationLevelCode() { 061 return locationLevelCode; 062 } 063 /** 064 * Sets the locationLevelCode attribute value. 065 * @param locationLevelCode The locationLevelCode to set. 066 */ 067 public void setLocationLevelCode(String locationLevelCode) { 068 this.locationLevelCode = locationLevelCode; 069 } 070 /** 071 * Gets the parentLocationCode attribute. 072 * @return Returns the parentLocationCode. 073 */ 074 public String getParentLocationCode() { 075 return parentLocationCode; 076 } 077 /** 078 * Sets the parentLocationCode attribute value. 079 * @param parentLocationCode The parentLocationCode to set. 080 */ 081 public void setParentLocationCode(String parentLocationCode) { 082 this.parentLocationCode = parentLocationCode; 083 } 084}