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 */ 016package org.kuali.ole.select.businessobject; 017 018import org.kuali.ole.module.purap.businessobject.PurApItem; 019import org.kuali.rice.krad.bo.PersistableBusinessObjectBase; 020 021/** 022 * OLE RequisitionNotes Base Business Object. 023 */ 024public class OleRequisitionNotes extends PersistableBusinessObjectBase implements OleNotes { 025 026 private Integer itemNoteId; 027 private Integer itemIdentifier; 028 private Integer noteTypeId; 029 private String note; 030 031 private OleNoteType noteType; 032 private PurApItem purapItem; 033 034 /** 035 * Constructs a OleRequisitionNotesBase.java. 036 */ 037 public OleRequisitionNotes() { 038 039 } 040 041 /** 042 * get the RequisitionItem Note Id 043 * 044 * @return itemNoteId 045 * @see org.kuali.ole.select.businessobject.OleNotes#getItemNoteId() 046 */ 047 048 @Override 049 public Integer getItemNoteId() { 050 return itemNoteId; 051 } 052 053 /** 054 * set the Requisition Item Note Id 055 * 056 * @param itemNoteId 057 * @see org.kuali.ole.select.businessobject.OleNotes#setItemNoteId(java.math.BigDecimal) 058 */ 059 @Override 060 public void setItemNoteId(Integer itemNoteId) { 061 this.itemNoteId = itemNoteId; 062 063 } 064 065 /** 066 * get Item Identifier 067 * 068 * @return itemIdentifier 069 * @see org.kuali.ole.select.businessobject.OleNotes#getItemIdentifier() 070 */ 071 @Override 072 public Integer getItemIdentifier() { 073 return itemIdentifier; 074 } 075 076 /** 077 * set Item Identifier 078 * 079 * @param itemIdentifier 080 * @see org.kuali.ole.select.businessobject.OleNotes#setItemIdentifier(java.lang.Integer) 081 */ 082 @Override 083 public void setItemIdentifier(Integer itemIdentifier) { 084 this.itemIdentifier = itemIdentifier; 085 } 086 087 /** 088 * get NoteType Bussiness Object 089 * 090 * @return noteType 091 * @see org.kuali.ole.select.businessobject.OleNotes#getNoteType() 092 */ 093 @Override 094 public OleNoteType getNoteType() { 095 return noteType; 096 } 097 098 /** 099 * set NoteType Bussiness Object 100 * 101 * @param noteType 102 * @see org.kuali.ole.select.businessobject.OleNotes#setNoteType(org.kuali.ole.select.businessobject.OleNoteType) 103 */ 104 @Override 105 public void setNoteType(OleNoteType noteType) { 106 this.noteType = noteType; 107 } 108 109 /** 110 * get Requisition NoteType Id 111 * 112 * @return noteTypeId 113 * @see org.kuali.ole.select.businessobject.OleNotes#getNoteTypeId() 114 */ 115 @Override 116 public Integer getNoteTypeId() { 117 return noteTypeId; 118 } 119 120 /** 121 * set Requisition NoteTypeId 122 * 123 * @param NoteTypeId 124 * @see org.kuali.ole.select.businessobject.OleNotes#setNoteTypeId(java.math.BigDecimal) 125 */ 126 @Override 127 public void setNoteTypeId(Integer noteTypeId) { 128 this.noteTypeId = noteTypeId; 129 } 130 131 /** 132 * get Requisition Note 133 * 134 * @return note 135 * @see org.kuali.ole.select.businessobject.OleNotes#getNote() 136 */ 137 @Override 138 public String getNote() { 139 return note; 140 } 141 142 /** 143 * set Requisition Note 144 * 145 * @param Note 146 * @see org.kuali.ole.select.businessobject.OleNotes#setNote(java.lang.String) 147 */ 148 @Override 149 public void setNote(String note) { 150 this.note = note; 151 } 152 153 /** 154 * get the OleRequistionItem 155 * 156 * @return purapItem 157 * @see org.kuali.ole.select.businessobject.OleNotes#getPurapItem() 158 */ 159 @Override 160 public PurApItem getPurapItem() { 161 return purapItem; 162 } 163 164 /** 165 * set the OleRequistionItem 166 * 167 * @param purapItem 168 * @see org.kuali.ole.select.businessobject.OleNotes#setReqItem(org.kuali.ole.module.purap.businessobject.PurApItem) 169 */ 170 @Override 171 public void setPurapItem(PurApItem purapItem) { 172 this.purapItem = purapItem; 173 } 174}