
This should be implemented so that it:
- retrieves/update the "model" object(ie: does the db query to find/update the DB/Model object).
ex:
....
JOTSQLQueryParams params=new JOTSQLQueryParams();
params.addCondition(new JOTSQLCondition("id",JOTSQLCondition.IS_EQUAL,request.getParameter("userId")));
model=JOTQueryManager.findOrCreateOne(MyModelImpl.class, params);
....