Package org.apache.maven.model.profile
Class DefaultProfileActivationContext
java.lang.Object
org.apache.maven.model.profile.DefaultProfileActivationContext
- All Implemented Interfaces:
- ProfileActivationContext
Describes the environmental context used to determine the activation status of profiles.
- Author:
- Benjamin Bentmann
- 
Field SummaryFields inherited from interface org.apache.maven.model.profile.ProfileActivationContextPROPERTY_NAME_PACKAGING
- 
Constructor SummaryConstructors
- 
Method SummaryModifier 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.Gets the base directory of the current project (if any).Gets current calculated project propertiesGets 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.setProjectDirectory(File projectDirectory) Sets the base directory of the current project.setProjectProperties(Map<String, String> projectProperties) setProjectProperties(Properties projectProperties) 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- 
DefaultProfileActivationContextpublic DefaultProfileActivationContext()
 
- 
- 
Method Details- 
getActiveProfileIdsDescription copied from interface:ProfileActivationContextGets the identifiers of those profiles that should be activated by explicit demand.- Specified by:
- getActiveProfileIdsin interface- ProfileActivationContext
- Returns:
- The identifiers of those profiles to activate, never null.
 
- 
setActiveProfileIdsSets the identifiers of those profiles that should be activated by explicit demand.- Parameters:
- activeProfileIds- The identifiers of those profiles to activate, may be- null.
- Returns:
- This context, never null.
 
- 
getInactiveProfileIdsDescription copied from interface:ProfileActivationContextGets the identifiers of those profiles that should be deactivated by explicit demand.- Specified by:
- getInactiveProfileIdsin interface- ProfileActivationContext
- Returns:
- The identifiers of those profiles to deactivate, never null.
 
- 
setInactiveProfileIdsSets the identifiers of those profiles that should be deactivated by explicit demand.- Parameters:
- inactiveProfileIds- The identifiers of those profiles to deactivate, may be- null.
- Returns:
- This context, never null.
 
- 
getSystemPropertiesDescription copied from interface:ProfileActivationContextGets 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:
- getSystemPropertiesin interface- ProfileActivationContext
- Returns:
- The execution properties, never null.
 
- 
setSystemPropertiesSets 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 be- null.
- Returns:
- This context, never null.
 
- 
setSystemPropertiesSets 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 be- null.
- Returns:
- This context, never null.
 
- 
getUserPropertiesDescription copied from interface:ProfileActivationContextGets 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=valueparameter on the command line.- Specified by:
- getUserPropertiesin interface- ProfileActivationContext
- Returns:
- The user properties, never null.
 
- 
setUserPropertiesSets 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=valueparameter on the command line.- Parameters:
- userProperties- The user properties, may be- null.
- Returns:
- This context, never null.
 
- 
setUserPropertiesSets 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=valueparameter on the command line.- Parameters:
- userProperties- The user properties, may be- null.
- Returns:
- This context, never null.
 
- 
getProjectDirectoryDescription copied from interface:ProfileActivationContextGets the base directory of the current project (if any).- Specified by:
- getProjectDirectoryin interface- ProfileActivationContext
- Returns:
- The base directory of the current project or nullif none.
 
- 
setProjectDirectorySets the base directory of the current project.- Parameters:
- projectDirectory- The base directory of the current project, may be- nullif profile activation happens in the context of metadata retrieval rather than project building.
- Returns:
- This context, never null.
 
- 
getProjectPropertiesDescription copied from interface:ProfileActivationContextGets current calculated project properties- Specified by:
- getProjectPropertiesin interface- ProfileActivationContext
- Returns:
- The project properties, never null.
 
- 
setProjectProperties
- 
setProjectProperties
 
-