SOLR-547: add getFactories() to ChainedUpdateProcessorFactory

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@651281 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Yonik Seeley 2008-04-24 14:41:03 +00:00
parent abeb46d7da
commit 82de9f0336
1 changed files with 4 additions and 0 deletions

View File

@ -102,4 +102,8 @@ public class ChainedUpdateProcessorFactory extends UpdateRequestProcessorFactory
}
return last;
}
public UpdateRequestProcessorFactory[] getFactories() {
return factory;
}
}