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.purap.businessobject; 017 018 import java.util.List; 019 020 import org.kuali.rice.kns.bo.Note; 021 022 /** 023 * Requisition View Business Object. 024 */ 025 public class CorrectionReceivingView extends AbstractRelatedView { 026 private String lineItemReceivingDocumentNumber; 027 028 public String getLineItemReceivingDocumentNumber() { 029 return lineItemReceivingDocumentNumber; 030 } 031 032 public void setLineItemReceivingDocumentNumber(String lineItemReceivingDocumentNumber) { 033 this.lineItemReceivingDocumentNumber = lineItemReceivingDocumentNumber; 034 } 035 036 /** 037 * The next three methods are overridden but shouldnt be! If they arent overridden, they dont show up in the tag, not sure why 038 * at this point! (AAP) 039 * 040 * @see org.kuali.kfs.module.purap.businessobject.AbstractRelatedView#getPurapDocumentIdentifier() 041 */ 042 @Override 043 public Integer getPurapDocumentIdentifier() { 044 return super.getPurapDocumentIdentifier(); 045 } 046 047 @Override 048 public String getDocumentIdentifierString() { 049 return super.getDocumentIdentifierString(); 050 } 051 052 /** 053 * @see org.kuali.kfs.module.purap.businessobject.AbstractRelatedView#getNotes() 054 */ 055 @Override 056 public List<Note> getNotes() { 057 return super.getNotes(); 058 } 059 060 /** 061 * @see org.kuali.kfs.module.purap.businessobject.AbstractRelatedView#getUrl() 062 */ 063 @Override 064 public String getUrl() { 065 return super.getUrl(); 066 } 067 }