I'm not really sure what the best approach is for designing what I would call a "parametric" search or rule engine. I have a Java object which has several fields. I will run the java object against several queries in order to see if it meets certain criteria.
An example i can think of is the bug search feature in bugzilla. In the UI you select things like the Status, Resolution, Severity. Then hit go and it returns bugs that match that criteria. I imagine that's implemented by generating a SQL query from the fields selected in the UI.
In my case, the object which contains the values isn't in a database so this isn't the obvious answer. My object is also fairly complex and would require adding multiple tables... and it seemed kind of hackish to create database tables just to then make use of the query engine in the database. Furthermore, in my application the user basically creates these mappings and they need to get saved to the database. So, in that case you would end up saving a raw sql query string to the database which sounded like a serious security no no to me. (But, i'm not a database guy so maybe that's just how things are done).
At this point, I'm really looking for some guidance. I'm hoping there is some type of design-pattern for what I'm trying to accomplish. I tried googling various things like "parametric search design pattern" and "rule engines" and didn't find anything that relevant. Is this something LINQ would tackle? I looked at it briefly and it seemed like that would be overkill as well.
Thanks in advance.
Edit 1:
Here is some additional details which I hope will clarify the comments thus far.
I want to let the user create some rules that will be like if object foo.getTemperature() is >= 30 and foo.getTypeOfMsg() == Alert. Then, retrieve a the "Alert" settings object. If foo.getTypeOfMsg() == "Test" then get the "Test" object. The rules are user-driven and so there are infinite possibilities. Object foo is retrieved by a webservice and I have no need to store it in the database.