I'm trying to figure out if it's possible to pass values into a backing bean via a JSF composite component. So if I have an interface like this
<composite:interface>
<composite:attribute name="commentList"/>
</composite:interface>
Can I then assign the value of commentList to a backing bean to do some processing on it?
Bonus question: Can I create a bean localized to this component? Ie, is there a way to create a bean such that it doesn't conflict with other instance of this components?