-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathHelloWorldAPIJolieInterfaceAndPort.ol
More file actions
52 lines (33 loc) · 1 KB
/
HelloWorldAPIJolieInterfaceAndPort.ol
File metadata and controls
52 lines (33 loc) · 1 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
// API title: HelloWorldAPI
// API description: The MDSL service contract specified the usage scenario as: UNDISCLOSED_VISIBILITY ANY_INTEGRATION_DIRECTION, serving in undisclosed MAP role(s)
// The WSDL can be viewed/analyzed at: https://www.wsdl-analyzer.com/upload
type helloWorldRequestDTO {
identifier1:string
}
type helloWorldResponseDTO {
identifier2:string
identifier3:string
}
type SOAPFaultMessage {
code: int
text: string
actor: string
details: string
}
// TODO only capitalize first character (last one is decapitalized?)
// interface/endpoint role: undisclosed
interface Helloworldendpoint {
// TODO also support OneWay:
RequestResponse:
// operation responsibility: unknown
helloWorld( helloWorldRequestDTO )( helloWorldResponseDTO ) , // TODO no comma for last op
}
inputPort HelloworldendpointPort {
location: "socket://localhost:8080" // this would come from API Provider Info in MDSL
protocol: soap
interfaces: Helloworldendpoint
}
main
{
nullProcess
}