improve plugin scan performance

This commit is contained in:
Sebastian Sdorra
2011-05-27 09:48:28 +02:00
parent dd30544484
commit e2925f0276
10 changed files with 563 additions and 43 deletions

View File

@@ -70,6 +70,17 @@ public class BackendConfiguration
return directories;
}
/**
* Method description
*
*
* @return
*/
public Set<String> getExcludes()
{
return excludes;
}
/**
* Method description
*
@@ -116,6 +127,17 @@ public class BackendConfiguration
this.directories = directories;
}
/**
* Method description
*
*
* @param excludes
*/
public void setExcludes(Set<String> excludes)
{
this.excludes = excludes;
}
/**
* Method description
*
@@ -156,6 +178,11 @@ public class BackendConfiguration
@XmlElementWrapper(name = "directories")
private Set<File> directories;
/** Field description */
@XmlElement(name = "exclude")
@XmlElementWrapper(name = "excludes")
private Set<String> excludes;
/** Field description */
private boolean multithreaded = true;