/** By default we do local search */
private AttachmentLocatorType searchType = AttachmentLocatorEnum.LOCAL;
protected boolean doAccepts(DeploymentUnit unit)
{
DeploymentUnitFilter filter = searchType.search(unit, DeploymentUnitFilter.class);
return filter == null || filter.accepts(unit);
}