public interface SettingsBuildingRequest
Modifier and Type | Method and Description |
---|---|
java.io.File |
getGlobalSettingsFile()
Gets the global settings file.
|
SettingsSource |
getGlobalSettingsSource()
Gets the global settings source.
|
java.util.Properties |
getSystemProperties()
Gets the system properties to use for interpolation.
|
java.util.Properties |
getUserProperties()
Gets the user properties to use for interpolation.
|
java.io.File |
getUserSettingsFile()
Gets the user settings file.
|
SettingsSource |
getUserSettingsSource()
Gets the user settings source.
|
SettingsBuildingRequest |
setGlobalSettingsFile(java.io.File globalSettingsFile)
Sets the global settings file.
|
SettingsBuildingRequest |
setGlobalSettingsSource(SettingsSource globalSettingsSource)
Sets the global settings source.
|
SettingsBuildingRequest |
setSystemProperties(java.util.Properties systemProperties)
Sets the system properties to use for interpolation.
|
SettingsBuildingRequest |
setUserProperties(java.util.Properties userProperties)
Sets the user properties to use for interpolation.
|
SettingsBuildingRequest |
setUserSettingsFile(java.io.File userSettingsFile)
Sets the user settings file.
|
SettingsBuildingRequest |
setUserSettingsSource(SettingsSource userSettingsSource)
Sets the user settings source.
|
java.io.File getGlobalSettingsFile()
null
if none.SettingsBuildingRequest setGlobalSettingsFile(java.io.File globalSettingsFile)
globalSettingsFile
- The global settings file, may be null
to disable global settings.null
.SettingsSource getGlobalSettingsSource()
null
if none.SettingsBuildingRequest setGlobalSettingsSource(SettingsSource globalSettingsSource)
globalSettingsSource
- The global settings source, may be null
to disable global settings.null
.java.io.File getUserSettingsFile()
null
if none.SettingsBuildingRequest setUserSettingsFile(java.io.File userSettingsFile)
userSettingsFile
- The user settings file, may be null
to disable user settings.null
.SettingsSource getUserSettingsSource()
null
if none.SettingsBuildingRequest setUserSettingsSource(SettingsSource userSettingsSource)
userSettingsSource
- The user settings source, may be null
to disable user settings.null
.java.util.Properties getSystemProperties()
System.getProperties()
and environment variables.null
.SettingsBuildingRequest setSystemProperties(java.util.Properties systemProperties)
System.getProperties()
and environment variables.systemProperties
- The system properties, may be null
.null
.java.util.Properties getUserProperties()
-Dkey=value
parameter on the command line.null
.SettingsBuildingRequest setUserProperties(java.util.Properties userProperties)
-Dkey=value
parameter on the command line.userProperties
- The user properties, may be null
.null
.