-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfiguration.xml
More file actions
32 lines (32 loc) · 914 Bytes
/
Configuration.xml
File metadata and controls
32 lines (32 loc) · 914 Bytes
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
<Configuration>
<adapter name="HelloWorld">
<receiver name="HelloWorld">
<!-- This listener is used when the API is called as specified in OpenAPI 3.0 at the Webservices page -->
<listener
name="HelloWorld"
className="org.frankframework.http.rest.ApiListener"
uriPattern="hello-world"
allowAllParams="false"
/>
</receiver>
<receiver name="HelloWorld">
<!-- This listener is used by the scheduler and IbisLocalSender in adapter HelloWorlds -->
<listener
name="HelloWorld"
className="org.frankframework.receivers.JavaListener"
/>
</receiver>
<pipeline firstPipe="HelloWorld">
<exits>
<exit name="EXIT" state="success"/>
</exits>
<pipe
name="HelloWorld"
className="org.frankframework.pipes.EchoPipe"
getInputFromFixedValue="Hello World"
>
<forward name="success" path="EXIT"/>
</pipe>
</pipeline>
</adapter>
</Configuration>