I am attempting to convert my [action]-conversion.properties files to annotations and I having difficulty figuring out how to migrate this entry:
*"searchCriteria.emailQueueStates=com.afs.web.common.struts.converter.MyStringToCollectionConverter"* into an @annotation for the action class below... *public class BaseAction extends ActionSupport {* * @Element(value = com.afs.web.common.struts.converter.MyStringToCollectionConverter)* * private SearchCriteriaEmailQueue searchCriteria;* * /// code omitted* *}* How do I specify just the individual "emailQueueStates" parameter instead of the entire SearchCriteriaEmailQueue class?