Package org.apache.solr.core
Class SolrPaths.AllowPathBuilder
- java.lang.Object
-
- org.apache.solr.core.SolrPaths.AllowPathBuilder
-
-
Constructor Summary
Constructors Constructor Description AllowPathBuilder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SolrPaths.AllowPathBuilder
addPath(String path)
Adds an allowed path.SolrPaths.AllowPathBuilder
addPath(Path path)
Adds an allowed path.Set<Path>
build()
-
-
-
Method Detail
-
addPath
public SolrPaths.AllowPathBuilder addPath(String path)
Adds an allowed path. Detects "*" and "_ALL_" which mean all paths are allowed.
-
addPath
public SolrPaths.AllowPathBuilder addPath(Path path)
Adds an allowed path. Detects "_ALL_" which means all paths are allowed. Does not detect "*" (not supported as aPath
on Windows), seeaddPath(String)
.
-
-