org.apache.maven.settings
Class ActivationFile

java.lang.Object
  extended by org.apache.maven.settings.ActivationFile
All Implemented Interfaces:
Serializable

public class ActivationFile
extends Object
implements Serializable

This is the file specification used to activate a profile. The missing value will be a the location of a file that needs to exist, and if it doesn't the profile must run. On the other hand exists will test for the existence of the file and if it is there will run the profile.

Version:
$Revision$ $Date$
See Also:
Serialized Form

Constructor Summary
ActivationFile()
           
 
Method Summary
 String getExists()
          Get The name of the file that should exist to activate a profile.
 String getMissing()
          Get The name of the file that should be missing to activate a profile.
 String getModelEncoding()
           
 void setExists(String exists)
          Set The name of the file that should exist to activate a profile.
 void setMissing(String missing)
          Set The name of the file that should be missing to activate a profile.
 void setModelEncoding(String modelEncoding)
          Set an encoding used for reading/writing the model.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ActivationFile

public ActivationFile()
Method Detail

getExists

public String getExists()
Get The name of the file that should exist to activate a profile.

Returns:
String

getMissing

public String getMissing()
Get The name of the file that should be missing to activate a profile.

Returns:
String

setExists

public void setExists(String exists)
Set The name of the file that should exist to activate a profile.

Parameters:
exists -

setMissing

public void setMissing(String missing)
Set The name of the file that should be missing to activate a profile.

Parameters:
missing -

setModelEncoding

public void setModelEncoding(String modelEncoding)
Set an encoding used for reading/writing the model.

Parameters:
modelEncoding - the encoding used when reading/writing the model.

getModelEncoding

public String getModelEncoding()
Returns:
the current encoding used when reading/writing this model.


Copyright © 2001-2010 The Apache Software Foundation. All Rights Reserved.