Re: Posting Java 5 Enum values

2007-04-16 Thread Adam Ruggles
Thanks, yes that is what I wanted to do. I wrote a custom converter and it works fine. I was just hoping that struts2 would have a built in convert for this type since it's part of java 5. That might be a good item to add to a future version of struts2. Of course it only took me 10 minutes

Re: Posting Java 5 Enum values

2007-04-15 Thread Laurie Harper
Adam Ruggles wrote: I have an object that contains a Java 5 enum class. I'm having problems getting this to post back to my action. Is there any documentation on how to do this? Do I need to create a custom type converter/annotation/properties file? I'm not sure what you mean by 'getting t

Posting Java 5 Enum values

2007-04-13 Thread Adam Ruggles
I have an object that contains a Java 5 enum class. I'm having problems getting this to post back to my action. Is there any documentation on how to do this? Do I need to create a custom type converter/annotation/properties file? -