@Override
  public void addToIndex() {

    for (PropertyKey key :
        StructrApp.getConfiguration().getPropertySet(entityType, PropertyView.All)) {

      if (key.isIndexed()) {

        key.index(this, this.getPropertyForIndexing(key));
      }
    }
  }