Interface VaultFsConfig
-
- All Known Implementing Classes:
AbstractVaultFsConfig
public interface VaultFsConfig
VaultFsConfig
...
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.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 java.util.List<Aggregator>
getAggregators()
Returns a list of configured aggregators.java.util.List<ArtifactHandler>
getHandlers()
Returns a list of configured artifact handlers.java.lang.String
getProperty(java.lang.String name)
Returns the configuration property with the given name ornull
if it is not defined.java.io.InputStream
getSource()
Returns an input stream that contains the source xml that constructs this configjava.lang.String
getSourceAsString()
Returns the source xml that constructs this config
-
-
-
Field Detail
-
NAME_USE_BINARY_REFERENCES
static final java.lang.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
java.io.InputStream getSource()
Returns an input stream that contains the source xml that constructs this config- Returns:
- the source config
-
getSourceAsString
java.lang.String getSourceAsString()
Returns the source xml that constructs this config- Returns:
- the source xml
-
getAggregators
java.util.List<Aggregator> getAggregators()
Returns a list of configured aggregators.- Returns:
- the configured aggregators.
-
getHandlers
java.util.List<ArtifactHandler> getHandlers()
Returns a list of configured artifact handlers.- Returns:
- the configured artifact handlers.
-
getProperty
java.lang.String getProperty(java.lang.String name)
Returns the configuration property with the given name ornull
if it is not defined.- Parameters:
name
- the name of the property- Returns:
- the value or null
-
-