Hi, in my action I have a client object that has a Set<String> email. In my http request, I have these data: client.email[0] = '[email protected]' client.email[1] = '[email protected]' client.email[2] = '[email protected]'
But I'm getting an error in ParametersInteceptor. I created these setters: public void setEmail(int index, String email) public void setEmail(String[] email) public void setEmail(Set<String> email) But I'm already getting an exception. What is the right way to do this? Or this interceptor never fills a Set? thanks in advice, msbrogli --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]

