public Map<String, String> getPropertiesMap() {
    Map<String, String> returnValue = new HashMap<String, String>();

    for (RiskRunProperty property : getProperties()) {
      returnValue.put(property.getPropertyKey(), property.getPropertyValue());
    }

    return returnValue;
  }