@ProviderType public final class SimpleDistributionRequest extends Object implements DistributionRequest
SimpleDistributionRequest is a DistributionRequest where all paths are either "deep" or "shallow".| Constructor and Description |
|---|
SimpleDistributionRequest(DistributionRequestType requestType,
boolean isDeep,
String... paths)
Creates distribution request with "deep" or "shallow" paths.
|
SimpleDistributionRequest(DistributionRequestType requestType,
String... paths)
Creates a distribution request with "shallow" paths.
|
SimpleDistributionRequest(DistributionRequestType requestType,
String[] paths,
Set<String> deepPaths)
Creates a distribution request with additional "deep" paths.
|
SimpleDistributionRequest(DistributionRequestType requestType,
String[] paths,
Set<String> deepPaths,
Map<String,String[]> pathFilters)
Creates a distribution request with "deep" paths and filters.
|
| Modifier and Type | Method and Description |
|---|---|
String[] |
getFilters(String path)
Get the filters applicable for a specific path
+/foo/.* - include all content under /foo
-/foo - exclude /foo node
filters are checked in order and the last matched filter determines inclusion/exclusion
|
String[] |
getPaths()
get the paths for this distribution request
|
DistributionRequestType |
getRequestType()
get the
DistributionRequestType associated with this request |
boolean |
isDeep(String path)
Returns whether the a path is covering the entire subtree (deep) or just the specified nodes (shallow)
|
String |
toString() |
public SimpleDistributionRequest(DistributionRequestType requestType, boolean isDeep, String... paths)
requestType - the request typeisDeep - is true if all paths are "deep" and is false if all paths are "shallow"paths - the array of paths to be distributedpublic SimpleDistributionRequest(DistributionRequestType requestType, String... paths)
requestType - the request typepaths - the array of paths to be distributedpublic SimpleDistributionRequest(DistributionRequestType requestType, String[] paths, Set<String> deepPaths)
requestType - the request typepaths - the array of paths to be distributeddeepPaths - the set of paths that are to be distributed in depth (with all their children)public SimpleDistributionRequest(DistributionRequestType requestType, String[] paths, Set<String> deepPaths, Map<String,String[]> pathFilters)
requestType - the request typepaths - the array of paths to be distributeddeepPaths - the set of paths that are to be distributed in depth (with all their children)pathFilters - the filters applicable for each path@Nonnull public DistributionRequestType getRequestType()
DistributionRequestType associated with this requestgetRequestType in interface DistributionRequestDistributionRequestTypepublic String[] getPaths()
getPaths in interface DistributionRequestpublic boolean isDeep(String path)
isDeep in interface DistributionRequestpath - the path to be checkedtrue if the path is deep@Nonnull public String[] getFilters(String path)
DistributionRequestgetFilters in interface DistributionRequestpath - the path to get applicable filters forCopyright © 2007–2022 The Apache Software Foundation. All rights reserved.