}
// get info of type by id
public Type getTypeInfo(String idType) {
logger.debug("getTypeInfo start");
Type type = null;
Session session = HibernateUtil.getSessionFactory().openSession();
try {
type = (Type) session.get(Type.class, idType);
logger.debug("getTypeInfo success");
} catch (HibernateException ex) {