Can i do that:
> public void save(Object obj) {
> try {
> getHibernateSession().save(obj);
> } catch (Exception e) {
>
> e.printStackTrace();
> }
>
> }
pass any entity as a parameter, and be sure that it will always be persisted without any problem?