*/
public void deleteLocationFolder(final UnitLocationFolder unitLocationFolder, final String username) throws EnMeNoResultsFoundException{
final GeoPointFolder locationFolder = getLocationFolder(unitLocationFolder.getId(), username);
log.info("deleteLocationFolder locationFolder "+locationFolder);
if (locationFolder == null) {
throw new EnMeNoResultsFoundException("location folder not found");
}
else {
//TODO: we need remove items on CASCADE.
final List<GeoPoint> itemsToDelete = getGeoPointDao()
.getLocationByFolder(locationFolder.getLocationFolderId(), getUserAccountId(username));