Package org.apache.maven.model
Class ActivationFile
- java.lang.Object
-
- org.apache.maven.model.ActivationFile
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Cloneable
,InputLocationTracker
public class ActivationFile extends java.lang.Object implements java.io.Serializable, java.lang.Cloneable, InputLocationTracker
This is the file specification used to activate the profile. Themissing
value is the location of a file that needs to exist, and if it doesn't, the profile will be activated. On the other hand,exists
will test for the existence of the file and if it is there, the profile will be activated.
Variable interpolation for these file specifications is limited to${project.basedir}
, system properties and user properties.- Version:
- $Revision$ $Date$
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.String
exists
The name of the file that must exist to activate the profile.private InputLocation
existsLocation
Field existsLocation.private InputLocation
location
Field location.private java.util.Map<java.lang.Object,InputLocation>
locations
Field locations.private java.lang.String
missing
The name of the file that must be missing to activate the profile.private InputLocation
missingLocation
Field missingLocation.
-
Constructor Summary
Constructors Constructor Description ActivationFile()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ActivationFile
clone()
Method clone.java.lang.String
getExists()
Get the name of the file that must exist to activate the profile.InputLocation
getLocation(java.lang.Object key)
Gets the location of the specified field in the input source.java.lang.String
getMissing()
Get the name of the file that must be missing to activate the profile.private InputLocation
getOtherLocation(java.lang.Object key)
void
setExists(java.lang.String exists)
Set the name of the file that must exist to activate the profile.void
setLocation(java.lang.Object key, InputLocation location)
Sets the location of the specified field.void
setMissing(java.lang.String missing)
Set the name of the file that must be missing to activate the profile.void
setOtherLocation(java.lang.Object key, InputLocation location)
-
-
-
Field Detail
-
missing
private java.lang.String missing
The name of the file that must be missing to activate the profile.
-
exists
private java.lang.String exists
The name of the file that must exist to activate the profile.
-
locations
private java.util.Map<java.lang.Object,InputLocation> locations
Field locations.
-
location
private InputLocation location
Field location.
-
missingLocation
private InputLocation missingLocation
Field missingLocation.
-
existsLocation
private InputLocation existsLocation
Field existsLocation.
-
-
Method Detail
-
clone
public ActivationFile clone()
Method clone.- Overrides:
clone
in classjava.lang.Object
- Returns:
- ActivationFile
-
getExists
public java.lang.String getExists()
Get the name of the file that must exist to activate the profile.- Returns:
- String
-
getLocation
public InputLocation getLocation(java.lang.Object key)
Description copied from interface:InputLocationTracker
Gets the location of the specified field in the input source.- Specified by:
getLocation
in interfaceInputLocationTracker
- Parameters:
key
- a key object.- Returns:
- InputLocation
-
getMissing
public java.lang.String getMissing()
Get the name of the file that must be missing to activate the profile.- Returns:
- String
-
setLocation
public void setLocation(java.lang.Object key, InputLocation location)
Description copied from interface:InputLocationTracker
Sets the location of the specified field.- Specified by:
setLocation
in interfaceInputLocationTracker
- Parameters:
key
- a key object.location
- a location object.
-
setOtherLocation
public void setOtherLocation(java.lang.Object key, InputLocation location)
- Parameters:
key
- a key object.location
- a location object.
-
getOtherLocation
private InputLocation getOtherLocation(java.lang.Object key)
- Parameters:
key
- a key object.- Returns:
- InputLocation
-
setExists
public void setExists(java.lang.String exists)
Set the name of the file that must exist to activate the profile.- Parameters:
exists
- a exists object.
-
setMissing
public void setMissing(java.lang.String missing)
Set the name of the file that must be missing to activate the profile.- Parameters:
missing
- a missing object.
-
-