Downloads Documentation Community Contribute Demo






Show Sidebar
Login | Register
Show
Ignore:
Timestamp:
05/06/08 00:36:37 (8 months ago)
Author:
djazayeri
Message:

Allow voiding the obs that exits a patient from care. Added global property listeners and supporting infrastructure. The xml for this needs to be changed slightly, but the method signatures are fine.
Also fixing CR/LF issue in a few files

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • openmrs/trunk/src/api/org/openmrs/api/db/hibernate/HibernateAdministrationDAO.java

    r4095 r4113  
    704704        } 
    705705 
    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 { 
    708707                sessionFactory.getCurrentSession().save(prop); 
    709708        }