Parent: [d60174] (diff)

Child: [ae971b] (diff)

Download this file

PreservationIdentifierService.java    65 lines (57 with data), 3.3 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package net.timbusproject.dpes.alternative;
import java.util.List;
import javax.jws.WebMethod;
import javax.jws.WebParam;
import javax.jws.WebResult;
import javax.jws.WebService;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.ws.Action;
import javax.xml.ws.FaultAction;
import javax.xml.ws.RequestWrapper;
import javax.xml.ws.ResponseWrapper;
/**
* This class was generated by the JAX-WS RI.
* JAX-WS RI 2.2.9-b130926.1035
* Generated source version: 2.2
*
*/
@WebService(name = "PreservationIdentifierService", targetNamespace = "http://alternative.dpes.timbusproject.net/")
@XmlSeeAlso({
ObjectFactory.class
})
public interface PreservationIdentifierService {
/**
*
* @param arg3
* @param arg2
* @param arg1
* @param arg0
* @return
* returns net.timbusproject.dpes.alternative.PreservationAlternatives
* @throws OWLOntologyCreationException_Exception
* @throws OWLOntologyStorageException_Exception
* @throws IOException_Exception
* @throws OwlElementNotFoundException_Exception
*/
@WebMethod
@WebResult(targetNamespace = "")
@RequestWrapper(localName = "identifyPreservationAlternatives", targetNamespace = "http://alternative.dpes.timbusproject.net/", className = "net.timbusproject.dpes.alternative.IdentifyPreservationAlternatives")
@ResponseWrapper(localName = "identifyPreservationAlternativesResponse", targetNamespace = "http://alternative.dpes.timbusproject.net/", className = "net.timbusproject.dpes.alternative.IdentifyPreservationAlternativesResponse")
@Action(input = "http://alternative.dpes.timbusproject.net/PreservationIdentifierService/identifyPreservationAlternativesRequest", output = "http://alternative.dpes.timbusproject.net/PreservationIdentifierService/identifyPreservationAlternativesResponse", fault = {
@FaultAction(className = OwlElementNotFoundException_Exception.class, value = "http://alternative.dpes.timbusproject.net/PreservationIdentifierService/identifyPreservationAlternatives/Fault/OwlElementNotFoundException"),
@FaultAction(className = OWLOntologyCreationException_Exception.class, value = "http://alternative.dpes.timbusproject.net/PreservationIdentifierService/identifyPreservationAlternatives/Fault/OWLOntologyCreationException"),
@FaultAction(className = OWLOntologyStorageException_Exception.class, value = "http://alternative.dpes.timbusproject.net/PreservationIdentifierService/identifyPreservationAlternatives/Fault/OWLOntologyStorageException"),
@FaultAction(className = IOException_Exception.class, value = "http://alternative.dpes.timbusproject.net/PreservationIdentifierService/identifyPreservationAlternatives/Fault/IOException")
})
public PreservationAlternatives identifyPreservationAlternatives(
@WebParam(name = "arg0", targetNamespace = "")
String arg0,
@WebParam(name = "arg1", targetNamespace = "")
List<Risk> arg1,
@WebParam(name = "arg2", targetNamespace = "")
String arg2,
@WebParam(name = "arg3", targetNamespace = "")
String arg3)
throws IOException_Exception, OWLOntologyCreationException_Exception, OWLOntologyStorageException_Exception, OwlElementNotFoundException_Exception
;
}