protected void updateAdminProperties(Location location, PropertyMap changes, boolean creating) {

    for (Map.Entry<String, Object> change : changes.entrySet()) {
      String property = change.getKey();
      Object value = change.getValue();

      if (property.startsWith(AdminLevelDTO.PROPERTY_PREFIX)) {

        int levelId = AdminLevelDTO.levelIdForPropertyName(property);
        AdminEntityDTO entity = (AdminEntityDTO) value;

        if (creating) {
          if (entity != null) {
            locationDAO.addAdminMembership(location.getId(), entity.getId());
          }
        } else {
          if (entity != null) {
            locationDAO.updateAdminMembership(location.getId(), levelId, entity.getId());
          } else {
            locationDAO.removeMembership(location.getId(), levelId);
          }
        }
      }
    }
  }
 /** @return Returns the locations. */
 public List getLocations() {
   if (locations == null || refresh == true) {
     locations = locationDAO.Locations();
     refresh = false;
   }
   return locations;
 }
 public void saveLocation(Location stock) throws Exception {
   locationDAO.saveLocation(stock);
   refresh = true;
 }
 public Location getLocation(Integer LocationID) {
   return locationDAO.getLocation(LocationID);
 }
  @Override
  public Integer create(User user, PropertyMap properties) {

    Activity activity = null;
    UserDatabase database;
    LocationType locationType;
    OrgUnit partner = null;

    if (properties.containsKey("activityId")) {
      activity = activityDAO.findById((Integer) properties.get("activityId"));
      locationType = activity.getLocationType();
      database = activity.getDatabase();

    } else if (properties.containsKey("databaseId")) {
      database = userDatabaseDAO.findById((Integer) properties.get("databaseId"));
      Set<LocationType> locationTypes = database.getCountry().getLocationTypes();
      if (locationTypes.isEmpty()) {
        throw new RuntimeException(
            "A site cannot be created without a location type, and the country '"
                + database.getCountry().getName()
                + "' (id = "
                + database.getCountry().getId()
                + ") has no location types defined.");
      }
      locationType = locationTypes.iterator().next();
      if (user.getOrganization() != null) {
        partner = user.getOrganization().getRoot();
      }
    } else {
      throw new RuntimeException("An activityId or databaseId must be provided to create a site");
    }

    if (properties.containsKey("partner")) {
      partner = partnerDAO.findById(((PartnerDTO) properties.get("partner")).getId());
    }

    if (partner == null) {
      throw new RuntimeException("No orgUnit id provided for new site");
    }

    /*
     * Create and save a new Location object in the database
     */

    Location location = new Location();
    location.setLocationType(locationType);
    updateLocationProperties(location, properties);

    locationDAO.persist(location);

    updateAdminProperties(location, properties, true);

    /*
     * Create and persist the Site object
     */

    Site site = new Site();
    site.setLocation(location);
    site.setActivity(activity);
    site.setDatabase(database);
    site.setPartner(partner);
    site.setDateCreated(new Date());

    updateSiteProperties(site, properties, true);

    siteDAO.persist(site);

    updateAttributeValueProperties(site, properties, true);

    /*
     * Create the reporting period object
     * IF this is a report-once activity (punctual)
     *
     * otherwise ReportingPeriods are modeled separately on the client.
     */

    if (activity != null && activity.getReportingFrequency() == ActivityDTO.REPORT_ONCE) {

      ReportingPeriod period = new ReportingPeriod();
      period.setSite(site);
      period.setMonitoring(false);

      updatePeriodProperties(period, properties, true);

      reportingPeriodDAO.persist(period);

      updateIndicatorValueProperties(period, properties, true);
    }

    return site.getId();
  }