I'm trying to come up with a clean way of having a String resource bundle for my application, that contains my JSF labels etc and my messages and errors.
What I have is a 'Create Element' page that flows on save to a validate function.
<transition on="save" to="validateElementCreate" validate="false" >
<evaluate expression="newElement.validate(messageContext)" />
</transition>
My element validate function adds messages to the context it's provided but they are hard coded. So I want to pass a resource bundle in to the function with it.
My resource bundle is named "element_maintenance_msgs" so I tried to do this:
<transition on="save" to="validateElementCreate" validate="false" >
<evaluate expression="newElement.validate(messageContext,
element_maintenance_msgs)" />
</transition>
which doesn't work becasue the resource bundle configured in faces-config.xml, isn't visible to the webflow.
What are my options for providing portability of the bundle?