}
//get list color by id
public Color getInfoColor(int id) {
logger.debug("getInfoColor by id start");
Color sp = null;
Session session = HibernateUtil.getSessionFactory().openSession();
try {
sp = (Color) session.get(Color.class, id);
logger.debug("getInfoColor by id success");
} catch (HibernateException ex) {