Class OperatingSystemProfileActivator
java.lang.Object
org.apache.maven.internal.impl.model.profile.OperatingSystemProfileActivator
- All Implemented Interfaces:
ProfileActivator
@Named("os")
@Singleton
public class OperatingSystemProfileActivator
extends Object
implements ProfileActivator
Determines profile activation based on the operating system of the current runtime platform.
- See Also:
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprivate boolean
determineArchMatch
(String expectedArch, String actualArch) private boolean
determineFamilyMatch
(String family, String actualName) private boolean
determineNameMatch
(String family, String actualName) private boolean
determineVersionMatch
(String expectedVersion, String actualVersion) private boolean
private String
getSystemProperty
(ProfileActivationContext context, String key, String defValue) boolean
isActive
(Profile profile, ProfileActivationContext context, ModelProblemCollector problems) Determines whether the specified profile is active in the given activator context.boolean
presentInConfig
(Profile profile, ProfileActivationContext context, ModelProblemCollector problems) Determines whether specified activation method is present in configuration or not.
-
Field Details
-
REGEX_PREFIX
- See Also:
-
-
Constructor Details
-
OperatingSystemProfileActivator
public OperatingSystemProfileActivator()
-
-
Method Details
-
isActive
public boolean isActive(Profile profile, ProfileActivationContext context, ModelProblemCollector problems) Description copied from interface:ProfileActivator
Determines whether the specified profile is active in the given activator context.- Specified by:
isActive
in interfaceProfileActivator
- Parameters:
profile
- The profile whose activation status should be determined, must not benull
.context
- The environmental context used to determine the activation status of the profile, must not benull
.problems
- The container used to collect problems (e.g. bad syntax) that were encountered, must not benull
.- Returns:
true
if the profile is active,false
otherwise.
-
getSystemProperty
-
presentInConfig
public boolean presentInConfig(Profile profile, ProfileActivationContext context, ModelProblemCollector problems) Description copied from interface:ProfileActivator
Determines whether specified activation method is present in configuration or not. It should help to have AND between activation conditions Need for solving https://issues.apache.org/jira/browse/MNG-4565- Specified by:
presentInConfig
in interfaceProfileActivator
- Parameters:
profile
- The profile whose activation status should be determined, must not benull
.context
- The environmental context used to determine the activation status of the profile, must not benull
.problems
- The container used to collect problems (e.g. bad syntax) that were encountered, must not benull
.- Returns:
true
if the profile is active,false
otherwise.
-
ensureAtLeastOneNonNull
-
determineVersionMatch
-
determineArchMatch
-
determineNameMatch
-
determineFamilyMatch
-