1 package org.kuali.ole.describe.service;
2
3 import org.kuali.ole.describe.form.CallNumberBrowseForm;
4 import org.kuali.ole.describe.form.OLESearchForm;
5
6 import java.util.List;
7
8
9
10
11
12
13
14
15 public interface BrowseService {
16
17
18 public List callNumberBrowse(CallNumberBrowseForm callNumberBrowseForm);
19
20 public List callNumberBrowsePrev(CallNumberBrowseForm callNumberBrowseForm);
21
22 public List callNumberBrowseNext(CallNumberBrowseForm callNumberBrowseForm);
23
24 public boolean getPreviosFlag();
25
26 public boolean getNextFlag();
27
28 public String getPageShowEntries();
29
30 public List browse(OLESearchForm oleSearchForm);
31
32 public List browseOnChange(OLESearchForm oleSearchForm);
33
34 public List browsePrev(OLESearchForm oleSearchForm);
35
36 public List browseNext(OLESearchForm oleSearchForm);
37
38 public String validateLocation(String locationString);
39 }