1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.ole.select.service;
17
18 import javax.jws.WebService;
19 import javax.jws.soap.SOAPBinding;
20
21 @WebService(name = "docStoreService", targetNamespace = "http://service.select.ole.kuali.org/")
22 @SOAPBinding(style = SOAPBinding.Style.DOCUMENT, use = SOAPBinding.Use.LITERAL, parameterStyle = SOAPBinding.ParameterStyle.WRAPPED)
23
24 public interface DocStoreService {
25
26 public String search(String title, String author, String standardNumberType, String standardNumber) throws Exception;
27
28 public String ingest(String title, String author, String standardNumberType, String standardNumber) throws Exception;
29 }