Seam - list all components
- by Walter White
Hi all,
I would like to get a list of all the components so that I can further process them. Is this possible, if so, how can I do that? I don't believe I can observe all postCreate events since it is simply an exact match and not a regular expression.
@Observer("org.jboss.seam.postCreate.")
You can only observe those events and not * as it is put into a map where the key is a string.
Any ideas?
Walter