Changeset 4113 for openmrs/trunk/src/api/org/openmrs/api/db/hibernate/HibernateAdministrationDAO.java
- Timestamp:
- 05/06/08 00:36:37 (8 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
openmrs/trunk/src/api/org/openmrs/api/db/hibernate/HibernateAdministrationDAO.java
r4095 r4113 704 704 } 705 705 706 public void addGlobalProperty(String propertyName, String propertyValue) throws DAOException { 707 GlobalProperty prop = new GlobalProperty(propertyName, propertyValue); 706 public void createGlobalProperty(GlobalProperty prop) throws DAOException { 708 707 sessionFactory.getCurrentSession().save(prop); 709 708 }