Displaying a simple error page from a flow

Cantor, Scott cantor.2 at osu.edu
Fri Dec 9 13:24:56 EST 2016


On 12/9/16, 1:14 PM, "users on behalf of Wessel, Keith" <users-bounces at shibboleth.net on behalf of kwessel at illinois.edu> wrote:

>    I think I get it, but I'm still not great with Spring. The util:map should look like this?

Yes, basically.

> Is custom now a hash of beans that can be referenced with something like custom["attributeResolver"]?

Yes, it's just a Java map, and supports all the methods on Map. Javascript supports indexing a map with brackets, so that's a shorthand, it's the same as custom.get("key");

You don't have to use strings, BTW, you can index a Java Map with any Object, strings are just obvious.

You don't have to use a map either, could be a list, whatever. Anything that tunnels multiple objects in through one object.

-- Scott




More information about the users mailing list