* @param wildcardString a string containing wildcard characters ("*") to match against the CrawlableDataset name
* @param mustBeCollection if true the filter only accepts collection datasets
*/
MyFilter( String wildcardString, boolean mustBeCollection )
{
proxyFilter = new WildcardMatchOnNameFilter( wildcardString );
this.mustBeCollection = mustBeCollection;
}