Im having an issue retrieving a list of objects using Criteria.
My code:
Code:
session = HibernateFactory.getSession();
Criteria criteria = session.createCriteria(Client.class);
List clients= criteria.list();
The last line I get:
Code:
[ERROR] 2017-11-17 00:06:36.474 [main] SetterMethodImpl - HHH000123: IllegalArgumentException in class: com.itrack.model.domain.Name, setter method of property: firstName
[ERROR] 2017-11-17 00:06:36.474 [main] SetterMethodImpl - HHH000091: Expected type: java.lang.String, actual value: com.itrack.model.domain.Donor
Sounds like its having some issue with the setter method. Sounds like its trying to set firstName with a Donor.
I'm lost.
Thanks