RE: Injecting Java 5 Enums into a managed bean

2006-08-09 Thread Conway. Fintan \(IT Solutions\)
Discussion Subject: Re: Injecting Java 5 Enums into a managed bean I use converters to convert strings to the enum and back. You can create your own custom EL resolver, but I am not sure if one is already written and available. -Andrew On 8/8/06, Baker,Jonathan <[EMAIL PROTECTED]> wrote: >

RE: Injecting Java 5 Enums into a managed bean

2006-08-08 Thread Dhananjay Prasanna
Title: Injecting Java 5 Enums into a managed bean A simpler solution would be to use the spring delegating variable resolver and refer directly to the spring bean instead. Afaik there is no native way to lookup java 5 enums in jsf 1.1 (or for that matter in jsf 1.2 either—without the custo

RE: Injecting Java 5 Enums into a managed bean

2006-08-08 Thread Baker,Jonathan
: Injecting Java 5 Enums into a managed bean I use converters to convert strings to the enum and back. You can create your own custom EL resolver, but I am not sure if one is already written and available. -Andrew On 8/8/06, Baker,Jonathan <[EMAIL PROTECTED]> wrote: > > > > I am t

Re: Injecting Java 5 Enums into a managed bean

2006-08-08 Thread Andrew Robinson
I use converters to convert strings to the enum and back. You can create your own custom EL resolver, but I am not sure if one is already written and available. -Andrew On 8/8/06, Baker,Jonathan <[EMAIL PROTECTED]> wrote: I am trying to inject an instance of an enumeration class into one of