Changeset 4312 for openmrs/branches/api_refactoring/src/api/org/openmrs/api/impl/ConceptServiceImpl.java
- Timestamp:
- 05/21/08 20:34:11 (8 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
openmrs/branches/api_refactoring/src/api/org/openmrs/api/impl/ConceptServiceImpl.java
r4290 r4312 984 984 */ 985 985 public void checkIfLocked() throws ConceptsLockedException { 986 String locked = Context.getAdministrationService().getGlobalProperty(OpenmrsConstants.G P_CONCEPTS_LOCKED, "false");986 String locked = Context.getAdministrationService().getGlobalProperty(OpenmrsConstants.GLOBAL_PROPERTY_CONCEPTS_LOCKED, "false"); 987 987 if (locked.toLowerCase().equals("true")) 988 988 throw new ConceptsLockedException();