Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-18-2018 07:12 AM
Hi Lars,
That would work if I could give generic values to every parameter, but I can't. For example, one of the parameters is a createdOnDate in a search method. Anything I pass into here is going to cause the wrong thing to be returned if someone were searching on URL name only. What I need is a way to mix and match parameters gracefully, using only 2 or 3 for instance. My current thinking is that I'll have to pass in a key/value pair string with every option I want, parse it, and then use that set to add parameters dynamically to the call with setQueryParameter(String name, String value). Thoughts?