Dear Wiki user, You have subscribed to a wiki page or wiki category on "Solr Wiki" for change notification.
The following page has been changed by NoblePaul: http://wiki.apache.org/solr/DataImportHandler ------------------------------------------------------------------------------ * @return A 'row' . The 'key' for the map is the column name and the 'value' is the value * of that column. If there are no more rows to be returned, return 'null' */ - Map<String, Object> nextRow(); + public Map<String, Object> nextRow(); /**This is used for delta-import. * It gives the pks of the changed rows in this entity * @return the pk vs value of all changed rows */ - Map<String, Object> nextModifiedRowKey(); + public Map<String, Object> nextModifiedRowKey(); /** This is used during delta-import. * It gives the pks of the rows that are deleted from this entity. @@ -336, +336 @@ * will be recreated * @return the pk vs value of all changed rows */ - Map<String, Object> nextDeletedRowKey(); + public Map<String, Object> nextDeletedRowKey(); /**This is used during delta-import. * This gives the primary keys and their values of all the rows changed in * a parent entity due to changes in this entity. * @return the pk vs value of all changed rows in the parent entity */ - Map<String, Object> nextModifiedParentRowKey(); + public Map<String, Object> nextModifiedParentRowKey(); } }}}
