Hi,
I am planning to implement a simple search engine with iBatis. You can search against a single table at a time and the search results are a list of maps, basically I don't want to return complete domain objects or have to call subsystemManager.getAll(). Essentially its a high level view, so not all details are required.
So I have 2 questions:
Can AfterInvocationProvider filter this type of collection properly or is the domain specific object required?
Given that I will have the users id before I make the request, should I be looking to implement this differently?
Appreciate any suggestions,
Thanks,
Conor.


