Changeset 5238 for openmrs-modules/addresshierarchy/src/org/openmrs/module/addresshierarchy/impl/AddressHierarchyServiceImpl.java
- Timestamp:
- 08/11/08 16:11:10 (5 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
openmrs-modules/addresshierarchy
- Property svn:ignore set to
dist
build
- Property svn:ignore set to
openmrs-modules/addresshierarchy/src/org/openmrs/module/addresshierarchy/impl/AddressHierarchyServiceImpl.java
r4787 r5238 7 7 import org.openmrs.module.addresshierarchy.AddressHierarchy; 8 8 import org.openmrs.module.addresshierarchy.AddressHierarchyService; 9 import org.openmrs.module.addresshierarchy.AddressHierarchyType; 9 10 import org.openmrs.module.addresshierarchy.db.AddressHierarchyDAO; 10 11 … … 49 50 return dao.getCompleteLocations(); 50 51 } 52 53 public String[] getLocationType(){ 54 return dao.getLocationType(); 55 } 56 57 public String[] getLocationTypeTable(){ 58 return dao.getLocationTypeTable(); 59 } 60 61 public void updateLocationTypeTable(AddressHierarchyType aht){ 62 dao.updateLocationTypeTable(aht); 63 } 64 65 public void loadTable(){ 66 dao.loadTable(); 67 } 68 public void unloadTable(){ 69 dao.unloadTable(); 70 } 71 public String[] getAddressHierarchyTypeList(Integer typeid){ 72 return dao.getAddressHierarchyTypeList(typeid); 73 } 74 51 75 52 76 }