Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
shib-idp-conftree/conf/authn/authn-events-flow.xml
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
22 lines (16 sloc)
856 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |