@Named(value="file") @Singleton public class FileProfileActivator extends java.lang.Object implements ProfileActivator
${basedir}
(since Maven 3,
see MNG-2363),
system properties and user properties.
${project.basedir}
is intentionally not supported as this form would suggest that other
${project.*}
expressions can be used, which is however beyond the design.Modifier and Type | Field and Description |
---|---|
private ProfileActivationFilePathInterpolator |
profileActivationFilePathInterpolator |
Constructor and Description |
---|
FileProfileActivator() |
Modifier and Type | Method and Description |
---|---|
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.
|
FileProfileActivator |
setProfileActivationFilePathInterpolator(ProfileActivationFilePathInterpolator profileActivationFilePathInterpolator) |
@Inject private ProfileActivationFilePathInterpolator profileActivationFilePathInterpolator
public FileProfileActivator setProfileActivationFilePathInterpolator(ProfileActivationFilePathInterpolator profileActivationFilePathInterpolator)
public boolean isActive(Profile profile, ProfileActivationContext context, ModelProblemCollector problems)
ProfileActivator
isActive
in interface ProfileActivator
profile
- The profile whose activation status should be determined, must not be null
.context
- The environmental context used to determine the activation status of the profile, must not be
null
.problems
- The container used to collect problems (e.g. bad syntax) that were encountered, must not be
null
.true
if the profile is active, false
otherwise.public boolean presentInConfig(Profile profile, ProfileActivationContext context, ModelProblemCollector problems)
ProfileActivator
presentInConfig
in interface ProfileActivator
profile
- The profile whose activation status should be determined, must not be null
.context
- The environmental context used to determine the activation status of the profile, must not be
null
.problems
- The container used to collect problems (e.g. bad syntax) that were encountered, must not be
null
.true
if the profile is active, false
otherwise.