SimpleKeyProvider<T> class
Simple passthrough implementation of {@link ProvidesKey}.
@param <T> the data type of records
class SimpleKeyProvider<T> implements ProvidesKey<T> {
/**
* Return the passed-in item.
*/
Object getKey(T item) {
return item;
}
}