I have some function and I'm wondering what is the most appropriate to
do, because I don't won't to lose strong typing
Hare is example of function:
---------------------------------------
searchTickets(String searchString, EnumSet<Ticket.Status> statuses,
EnumSet<Ticket.Type> types, EnumSet<Ticket.Mode> modes,
Collection<Integer> orgsId)
server side:
-----------------
1) What kind of javax.ws.rs parameter should I use or none?
2) Should I create TicketQuery pojo?
client side:
-----------------
1) If I use this input fields, how to set them in client
Regards, Tomaz