Hi guys, I'm wondering if there is a way to customize the
ActivationRequestParameter to accept a list? What I'm looking to do is pass
a list of strings into the ActivationRequestParameter and ultimately form a
query parameter in the URL like so

 make=chevy|ford

My thought was something like this.

@ActivationRequestParameter(value = SearchParam.MAKE)
private List<String> makes;

public void setFilters()  {
    makes = Arrays.asList("chevy", "ford");
}

I'm trying to design a search where the user can filter on the same field
multiple times.

Thanks,
George

Reply via email to