SAML2 IdP Extension
Tom Zeller
tzeller at dragonacea.biz
Thu Mar 26 23:39:09 EDT 2015
> I already found the file “system/flows/saml/saml2/sso-abstract-flow.xml”
> that describes that flow, but I don’t know
> how to override it or how to introduce additional actions into it. Neither
> do I know how the actions correspond to any Java-Classes.
Briefly, in a flow definition file (*-flow.xml) actions are executed via :
<evaluate expression="SomeAction" />
where "SomeAction" is defined in the corresponding bean definition
file (*-beans.xml) :
<bean id="SomeAction"
class="org.example.SomeAction" scope="prototype"
p:someProperty="someValue" />
for example. Flow definition files support inheritance, so when
looking at existing flows be aware of the parent attribute defined on
the <flow /> element.
More information about the dev
mailing list