1 /*
2 * Copyright 2009 The Kuali Foundation
3 *
4 * Licensed under the Educational Community License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.opensource.org/licenses/ecl2.php
9 *
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.ole.module.purap.document;
17
18 import java.util.List;
19
20 /*
21 * This is a dummy class used to create a DataDictionary entry for the Receiving parent type (RCV) for searching.
22 */
23 public class ReceivingDocumentForSearching extends ReceivingDocumentBase {
24
25 /**
26 * It's not needed to implement PurapItemOperations methods in this dummy class
27 */
28 @Override
29 public Class getItemClass() {
30 return null;
31 }
32
33 /**
34 * It's not needed to implement PurapItemOperations methods in this dummy class
35 */
36 public <T> T getItem(int pos) {
37 return null;
38 }
39
40 /**
41 * It's not needed to implement PurapItemOperations methods in this dummy class
42 */
43 public List getItems() {
44 return null;
45 }
46
47 /**
48 * It's not needed to implement PurapItemOperations methods in this dummy class
49 */
50 public void setItems(List items) {
51 }
52
53 }