public class HibernateLocationDAO extends Object implements LocationDAO
| Constructor and Description |
|---|
HibernateLocationDAO() |
| Modifier and Type | Method and Description |
|---|---|
void |
deleteLocation(Location location)
Completely remove the location from the database.
|
void |
deleteLocationTag(LocationTag tag)
Completely remove the location tag from the database.
|
List<Location> |
getAllLocations(boolean includeRetired)
Get all locations
|
List<LocationTag> |
getAllLocationTags(boolean includeRetired)
Get all location tags
|
Integer |
getCountOfLocations(String nameFragment,
Boolean includeRetired) |
Location |
getLocation(Integer locationId)
Get a location by locationId
|
Location |
getLocation(String name)
Get a location by name
|
Location |
getLocationByUuid(String uuid) |
List<Location> |
getLocations(String nameFragment,
boolean includeRetired,
Integer start,
Integer length)
Returns a specified number of locations starting with a given string from the specified index
|
LocationTag |
getLocationTag(Integer locationTagId)
Get a location tag by
locationTagId |
LocationTag |
getLocationTagByName(String tag)
Get a location tag by name
|
LocationTag |
getLocationTagByUuid(String uuid) |
List<LocationTag> |
getLocationTags(String search)
Find all location tags with matching names.
|
Location |
saveLocation(Location location)
Create or update a location.
|
LocationTag |
saveLocationTag(LocationTag tag)
Create or update a location tag.
|
void |
setSessionFactory(org.hibernate.SessionFactory sessionFactory)
Set the Hibernate SessionFactory to connect to the database.
|
public void setSessionFactory(org.hibernate.SessionFactory sessionFactory)
LocationDAOsetSessionFactory in interface LocationDAOLocationDAO.setSessionFactory(org.hibernate.SessionFactory)public Location saveLocation(Location location)
LocationDAOsaveLocation in interface LocationDAOlocation - Location to saveLocationLocationDAO.saveLocation(org.openmrs.Location)public Location getLocation(Integer locationId)
LocationDAOgetLocation in interface LocationDAOlocationId - Internal Integer identifier of the Location to getLocationLocationDAO.getLocation(java.lang.Integer)public Location getLocation(String name)
LocationDAOgetLocation in interface LocationDAOname - String name of the Location to getLocationLocationDAO.getLocation(java.lang.String)public List<Location> getAllLocations(boolean includeRetired)
LocationDAOgetAllLocations in interface LocationDAOincludeRetired - boolean - include retired locations as well?List object of all Locations, possibly including
retired locationsLocationDAO.getAllLocations(boolean)public void deleteLocation(Location location)
LocationDAOdeleteLocation in interface LocationDAOlocation - Location object to deleteLocationDAO.deleteLocation(org.openmrs.Location)public LocationTag saveLocationTag(LocationTag tag)
LocationDAOsaveLocationTag in interface LocationDAOLocationTagLocationDAO.saveLocation(org.openmrs.Location)public LocationTag getLocationTag(Integer locationTagId)
LocationDAOlocationTagIdgetLocationTag in interface LocationDAOlocationTagId - Internal Integer identifier of the tag to getLocationTagLocationDAO.getLocationTag(java.lang.Integer)public LocationTag getLocationTagByName(String tag)
LocationDAOgetLocationTagByName in interface LocationDAOtag - String representation of the LocationTag to getLocationTagLocationDAO.getLocationTagByName(java.lang.String)public List<LocationTag> getAllLocationTags(boolean includeRetired)
LocationDAOgetAllLocationTags in interface LocationDAOincludeRetired - boolean - include retired tags as well?LocationTags, possibly included
retired onesLocationDAO.getAllLocationTags(boolean)public List<LocationTag> getLocationTags(String search)
LocationDAOgetLocationTags in interface LocationDAOsearch - name to searchLocationTagsorg.openmrs.api.db.LocationDAO#getLocations(java.lang.String)public void deleteLocationTag(LocationTag tag)
LocationDAOdeleteLocationTag in interface LocationDAOtag - The LocationTag to deleteLocationDAO.deleteLocationTag(org.openmrs.LocationTag)public Location getLocationByUuid(String uuid)
getLocationByUuid in interface LocationDAOuuid - the uuid to look forLocationDAO.getLocationByUuid(java.lang.String)public LocationTag getLocationTagByUuid(String uuid)
getLocationTagByUuid in interface LocationDAOLocationDAO.getLocationTagByUuid(java.lang.String)public Integer getCountOfLocations(String nameFragment, Boolean includeRetired)
getCountOfLocations in interface LocationDAOLocationDAO.getCountOfLocations(String, Boolean)public List<Location> getLocations(String nameFragment, boolean includeRetired, Integer start, Integer length) throws DAOException
LocationDAOgetLocations in interface LocationDAODAOExceptionLocationDAO#getLocations(String, Integer, Integer)Copyright © 2018 OpenMRS LLC.. All Rights Reserved.