Interface VaultFsConfig
-
- All Known Implementing Classes:
AbstractVaultFsConfig
public interface VaultFsConfig
VaultFsConfig
...
-
-
Field Summary
Fields Modifier and Type Field Description static String
NAME_USE_BINARY_REFERENCES
Name of the property that configures whether to use binary references instead of actual binary
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<Aggregator>
getAggregators()
Returns a list of configured aggregators.List<ArtifactHandler>
getHandlers()
Returns a list of configured artifact handlers.String
getProperty(String name)
Returns the configuration property with the given name ornull
if it is not defined.InputStream
getSource()
Returns an input stream that contains the source xml that constructs this configString
getSourceAsString()
Returns the source xml that constructs this config
-
-
-
Field Detail
-
NAME_USE_BINARY_REFERENCES
static final String NAME_USE_BINARY_REFERENCES
Name of the property that configures whether to use binary references instead of actual binary- See Also:
- Constant Field Values
-
-
Method Detail
-
getSource
InputStream getSource()
Returns an input stream that contains the source xml that constructs this config- Returns:
- the source config
-
getSourceAsString
String getSourceAsString()
Returns the source xml that constructs this config- Returns:
- the source xml
-
getAggregators
List<Aggregator> getAggregators()
Returns a list of configured aggregators.- Returns:
- the configured aggregators.
-
getHandlers
List<ArtifactHandler> getHandlers()
Returns a list of configured artifact handlers.- Returns:
- the configured artifact handlers.
-
-