mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-07 13:38:49 +00:00
b8733eab00
The change replaces the Vagrant box based fixture with a fixture based on docker compose and 2 docker images, one for an openldap server and one for a Shibboleth SAML Identity Provider. The configuration of both openldap and shibboleth is identical to the previous one, in order to minimize required changes in the tests
23 lines
856 B
XML
23 lines
856 B
XML
<flow xmlns="http://www.springframework.org/schema/webflow"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://www.springframework.org/schema/webflow http://www.springframework.org/schema/webflow/spring-webflow.xsd"
|
|
abstract="true">
|
|
|
|
<!-- ADVANCED USE ONLY -->
|
|
|
|
<!--
|
|
You can ignore this file unless you are creating your own custom login subflows that want to
|
|
report custom events in response to unusual error or warning conditions.
|
|
-->
|
|
|
|
<!-- Custom error events to reflect back from user-supplied login subflows. -->
|
|
|
|
<!-- <end-state id="MyCustomEvent" /> -->
|
|
|
|
<global-transitions>
|
|
<!-- <transition on="MyCustomEvent" to="MyCustomEvent" /> -->
|
|
<transition on="#{!'proceed'.equals(currentEvent.id)}" to="InvalidEvent" />
|
|
</global-transitions>
|
|
|
|
</flow>
|