Class ActivationProperty

java.lang.Object
org.apache.maven.settings.ActivationProperty
All Implemented Interfaces:
Serializable, Cloneable

public class ActivationProperty extends Object implements Serializable, Cloneable
This is the property specification used to activate a profile. If the value field is empty, then the existence of the named property will activate the profile, otherwise it does a case-sensitive match against the property value as well.
Version:
$Revision$ $Date$
See Also:
  • Constructor Details

    • ActivationProperty

      public ActivationProperty()
  • Method Details

    • clone

      public ActivationProperty clone()
      Method clone.
      Overrides:
      clone in class Object
      Returns:
      ActivationProperty
    • getName

      public String getName()
      Get the name of the property to be used to activate a profile.
      Returns:
      String
    • getValue

      public String getValue()
      Get the value of the property to be used to activate a profile.
      Returns:
      String
    • setName

      public void setName(String name)
      Set the name of the property to be used to activate a profile.
      Parameters:
      name - a name object.
    • setValue

      public void setValue(String value)
      Set the value of the property to be used to activate a profile.
      Parameters:
      value - a value object.