Class DefaultProfileActivationContext
java.lang.Object
org.apache.maven.internal.impl.model.DefaultProfileActivationContext
- All Implemented Interfaces:
ProfileActivationContext
Describes the environmental context used to determine the activation status of profiles.
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionGets the identifiers of those profiles that should be activated by explicit demand.Gets the identifiers of those profiles that should be deactivated by explicit demand.getModel()
Gets the model which is being activated.Gets the system properties to use for interpolation and profile activation.Gets the user properties to use for interpolation and profile activation.setActiveProfileIds
(List<String> activeProfileIds) Sets the identifiers of those profiles that should be activated by explicit demand.setInactiveProfileIds
(List<String> inactiveProfileIds) Sets the identifiers of those profiles that should be deactivated by explicit demand.setSystemProperties
(Map<String, String> systemProperties) Sets the system properties to use for interpolation and profile activation.setSystemProperties
(Properties systemProperties) Sets the system properties to use for interpolation and profile activation.setUserProperties
(Map<String, String> userProperties) Sets the user properties to use for interpolation and profile activation.setUserProperties
(Properties userProperties) Sets the user properties to use for interpolation and profile activation.
-
Constructor Details
-
DefaultProfileActivationContext
public DefaultProfileActivationContext()
-
-
Method Details
-
getActiveProfileIds
Description copied from interface:ProfileActivationContext
Gets the identifiers of those profiles that should be activated by explicit demand.- Specified by:
getActiveProfileIds
in interfaceProfileActivationContext
- Returns:
- The identifiers of those profiles to activate, never
null
.
-
setActiveProfileIds
Sets the identifiers of those profiles that should be activated by explicit demand.- Parameters:
activeProfileIds
- The identifiers of those profiles to activate, may benull
.- Returns:
- This context, never
null
.
-
getInactiveProfileIds
Description copied from interface:ProfileActivationContext
Gets the identifiers of those profiles that should be deactivated by explicit demand.- Specified by:
getInactiveProfileIds
in interfaceProfileActivationContext
- Returns:
- The identifiers of those profiles to deactivate, never
null
.
-
setInactiveProfileIds
Sets the identifiers of those profiles that should be deactivated by explicit demand.- Parameters:
inactiveProfileIds
- The identifiers of those profiles to deactivate, may benull
.- Returns:
- This context, never
null
.
-
getSystemProperties
Description copied from interface:ProfileActivationContext
Gets the system properties to use for interpolation and profile activation. The system properties are collected from the runtime environment likeSystem.getProperties()
and environment variables.- Specified by:
getSystemProperties
in interfaceProfileActivationContext
- Returns:
- The execution properties, never
null
.
-
setSystemProperties
Sets the system properties to use for interpolation and profile activation. The system properties are collected from the runtime environment likeSystem.getProperties()
and environment variables.- Parameters:
systemProperties
- The system properties, may benull
.- Returns:
- This context, never
null
.
-
setSystemProperties
Sets the system properties to use for interpolation and profile activation. The system properties are collected from the runtime environment likeSystem.getProperties()
and environment variables.- Parameters:
systemProperties
- The system properties, may benull
.- Returns:
- This context, never
null
.
-
getUserProperties
Description copied from interface:ProfileActivationContext
Gets the user properties to use for interpolation and profile activation. The user properties have been configured directly by the user on his discretion, e.g. via the-Dkey=value
parameter on the command line.- Specified by:
getUserProperties
in interfaceProfileActivationContext
- Returns:
- The user properties, never
null
.
-
setUserProperties
Sets the user properties to use for interpolation and profile activation. 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 context, never
null
.
-
setUserProperties
Sets the user properties to use for interpolation and profile activation. 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 context, never
null
.
-
getModel
Description copied from interface:ProfileActivationContext
Gets the model which is being activated.- Specified by:
getModel
in interfaceProfileActivationContext
- Returns:
- The project model, never
null
.
-
setModel
-