01: /*
02: * Copyright 2007 The Kuali Foundation.
03: *
04: * Licensed under the Educational Community License, Version 1.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.opensource.org/licenses/ecl1.php
09: *
10: * Unless required by applicable law or agreed to in writing, software
11: * distributed under the License is distributed on an "AS IS" BASIS,
12: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13: * See the License for the specific language governing permissions and
14: * limitations under the License.
15: */
16: package org.kuali.module.purap.bo;
17:
18: import java.util.List;
19:
20: import org.kuali.core.bo.Note;
21:
22: /**
23: * Requisition View Business Object.
24: */
25: public class RequisitionView extends AbstractRelatedView {
26: private Integer requisitionIdentifier;
27:
28: public Integer getRequisitionIdentifier() {
29: return requisitionIdentifier;
30: }
31:
32: public void setRequisitionIdentifier(Integer requisitionIdentifier) {
33: this .requisitionIdentifier = requisitionIdentifier;
34: }
35:
36: /**
37: * The next three methods are overridden but shouldnt be! If they arent overridden, they dont show up in the tag, not sure why
38: * at this point! (AAP)
39: *
40: * @see org.kuali.module.purap.bo.AbstractRelatedView#getPurapDocumentIdentifier()
41: */
42: @Override
43: public Integer getPurapDocumentIdentifier() {
44: return super .getPurapDocumentIdentifier();
45: }
46:
47: /**
48: * @see org.kuali.module.purap.bo.AbstractRelatedView#getNotes()
49: */
50: @Override
51: public List<Note> getNotes() {
52: return super .getNotes();
53: }
54:
55: /**
56: * @see org.kuali.module.purap.bo.AbstractRelatedView#getUrl()
57: */
58: @Override
59: public String getUrl() {
60: return super.getUrl();
61: }
62: }
|