Class OperatingSystemProfileActivator
java.lang.Object
org.apache.maven.model.profile.activation.OperatingSystemProfileActivator
- All Implemented Interfaces:
ProfileActivator
@Named("os")
@Singleton
@Deprecated(since="4.0.0")
public class OperatingSystemProfileActivator
extends Object
implements ProfileActivator
Deprecated.
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 booleandetermineArchMatch(String expectedArch, String actualArch) Deprecated.private booleandetermineFamilyMatch(String family, String actualName) Deprecated.private booleandetermineNameMatch(String expectedName, String actualName) Deprecated.private booleandetermineVersionMatch(String expectedVersion, String actualVersion) Deprecated.private booleanDeprecated.booleanisActive(Profile profile, ProfileActivationContext context, ModelProblemCollector problems) Deprecated.Determines whether the specified profile is active in the given activator context.booleanpresentInConfig(Profile profile, ProfileActivationContext context, ModelProblemCollector problems) Deprecated.Determines whether specified activation method is present in configuration or not.
-
Field Details
-
REGEX_PREFIX
Deprecated.- See Also:
-
-
Constructor Details
-
OperatingSystemProfileActivator
public OperatingSystemProfileActivator()Deprecated.
-
-
Method Details
-
isActive
public boolean isActive(Profile profile, ProfileActivationContext context, ModelProblemCollector problems) Deprecated.Description copied from interface:ProfileActivatorDetermines whether the specified profile is active in the given activator context.- Specified by:
isActivein 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:
trueif the profile is active,falseotherwise.
-
presentInConfig
public boolean presentInConfig(Profile profile, ProfileActivationContext context, ModelProblemCollector problems) Deprecated.Description copied from interface:ProfileActivatorDetermines 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:
presentInConfigin 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:
trueif the profile is active,falseotherwise.
-
ensureAtLeastOneNonNull
Deprecated. -
determineVersionMatch
Deprecated. -
determineArchMatch
Deprecated. -
determineNameMatch
Deprecated. -
determineFamilyMatch
Deprecated.
-
ModelBuilderinstead