(Job job)
| 66 | } |
| 67 | |
| 68 | public Collection<WebPage.Field> getFields(Job job) { |
| 69 | Configuration conf = job.getConfiguration(); |
| 70 | Collection<WebPage.Field> columns = new HashSet<WebPage.Field>(FIELDS); |
| 71 | IndexCleaningFilters filters = new IndexCleaningFilters(conf); |
| 72 | columns.addAll(filters.getFields()); |
| 73 | return columns; |
| 74 | } |
| 75 | |
| 76 | public static class CleanMapper extends |
| 77 | GoraMapper<String, WebPage, String, WebPage> { |
no test coverage detected