List of usage examples for org.hibernate.criterion Property getProperty
public Property getProperty(String propertyName)
From source file:io.github.jonestimd.finance.dao.hibernate.HibernateDao.java
License:Open Source License
protected Property getProperty(String name, String... paths) { Property property = Property.forName(name); for (String path : paths) { property = property.getProperty(path); }// ww w . java 2 s . c o m return property; }