Interface SettingsBuildingRequest
- All Known Implementing Classes:
DefaultSettingsBuildingRequest
public interface SettingsBuildingRequest
Collects settings that control the building of effective settings.
-
Method Summary
Modifier and TypeMethodDescriptionGets the global settings file.Gets the global settings source.Gets the project settings file.Gets the project settings source.Gets the system properties to use for interpolation.Gets the user properties to use for interpolation.Gets the user settings file.Gets the user settings source.setGlobalSettingsFile
(File globalSettingsFile) Sets the global settings file.setGlobalSettingsSource
(SettingsSource globalSettingsSource) Sets the global settings source.setProjectSettingsFile
(File projectSettingsFile) Sets the project settings file.setProjectSettingsSource
(SettingsSource projectSettingsSource) Sets the project settings source.setSystemProperties
(Properties systemProperties) Sets the system properties to use for interpolation.setUserProperties
(Properties userProperties) Sets the user properties to use for interpolation.setUserSettingsFile
(File userSettingsFile) Sets the user settings file.setUserSettingsSource
(SettingsSource userSettingsSource) Sets the user settings source.
-
Method Details
-
getGlobalSettingsFile
File getGlobalSettingsFile()Gets the global settings file.- Returns:
- The global settings file or
null
if none.
-
setGlobalSettingsFile
Sets the global settings file. A non-existent settings file is equivalent to empty settings. If both user settings and global settings are given, the user settings take precedence.- Parameters:
globalSettingsFile
- The global settings file, may benull
to disable global settings.- Returns:
- This request, never
null
.
-
getGlobalSettingsSource
SettingsSource getGlobalSettingsSource()Gets the global settings source.- Returns:
- The global settings source or
null
if none.
-
setGlobalSettingsSource
Sets the global settings source. If both user settings and a global settings are given, the user settings take precedence.- Parameters:
globalSettingsSource
- The global settings source, may benull
to disable global settings.- Returns:
- This request, never
null
.
-
getProjectSettingsFile
File getProjectSettingsFile()Gets the project settings file.- Returns:
- The project settings file or
null
if none. - Since:
- 4.0.0
-
setProjectSettingsFile
Sets the project settings file. A non-existent settings file is equivalent to empty settings.- Parameters:
projectSettingsFile
- The project settings file, may benull
to disable project settings.- Returns:
- This request, never
null
. - Since:
- 4.0.0
-
getProjectSettingsSource
SettingsSource getProjectSettingsSource()Gets the project settings source.- Returns:
- The project settings source or
null
if none. - Since:
- 4.0.0
-
setProjectSettingsSource
Sets the project settings source.- Parameters:
projectSettingsSource
- The project settings source, may benull
to disable global settings.- Returns:
- This request, never
null
. - Since:
- 4.0.0
-
getUserSettingsFile
File getUserSettingsFile()Gets the user settings file.- Returns:
- The user settings file or
null
if none.
-
setUserSettingsFile
Sets the user settings file. A non-existent settings file is equivalent to empty settings. If both a user settings file and a global settings file are given, the user settings take precedence.- Parameters:
userSettingsFile
- The user settings file, may benull
to disable user settings.- Returns:
- This request, never
null
.
-
getUserSettingsSource
SettingsSource getUserSettingsSource()Gets the user settings source.- Returns:
- The user settings source or
null
if none.
-
setUserSettingsSource
Sets the user settings source. If both user settings and a global settings are given, the user settings take precedence.- Parameters:
userSettingsSource
- The user settings source, may benull
to disable user settings.- Returns:
- This request, never
null
.
-
getSystemProperties
Properties getSystemProperties()Gets the system properties to use for interpolation. The system properties are collected from the runtime environment likeSystem.getProperties()
and environment variables.- Returns:
- The system properties, never
null
.
-
setSystemProperties
Sets the system properties to use for interpolation. The system properties are collected from the runtime environment likeSystem.getProperties()
and environment variables.- Parameters:
systemProperties
- The system properties, may benull
.- Returns:
- This request, never
null
.
-
getUserProperties
Properties getUserProperties()Gets the user properties to use for interpolation. The user properties have been configured directly by the user on his discretion, e.g. via the-Dkey=value
parameter on the command line.- Returns:
- The user properties, never
null
.
-
setUserProperties
Sets the user properties to use for interpolation. The user properties have been configured directly by the user on his discretion, e.g. via the-Dkey=value
parameter on the command line.- Parameters:
userProperties
- The user properties, may benull
.- Returns:
- This request, never
null
.
-