1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.ole.select.document.service;
17
18 import org.kuali.ole.select.businessobject.OleRequestor;
19 import org.kuali.ole.select.businessobject.OleRequestorType;
20
21 import java.util.List;
22
23 public interface OleRequestorService {
24
25 public void saveRequestor(OleRequestor oleRequestor);
26
27 public OleRequestor getRequestorDetails(String requestorId);
28
29 public void saveRequestorType(OleRequestorType oleRequestorType);
30
31 public OleRequestorType getRequestorTypeDetails(String requestorType);
32
33 public List<OleRequestorType> getRequestorTypeList(String requestorType);
34 }