Class Activation

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Cloneable

    public class Activation
    extends java.lang.Object
    implements java.io.Serializable, java.lang.Cloneable
    The conditions within the build runtime environment which will trigger the automatic inclusion of the parent build profile.
    Version:
    $Revision$ $Date$
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      Activation()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      Activation clone()
      Method clone.
      ActivationFile getFile()
      Get specifies that this profile will be activated based on existence of a file.
      java.lang.String getJdk()
      Get specifies that this profile will be activated when a matching JDK is detected.
      ActivationOS getOs()
      Get specifies that this profile will be activated when matching OS attributes are detected.
      ActivationProperty getProperty()
      Get specifies that this profile will be activated when this property is specified.
      boolean isActiveByDefault()
      Get flag specifying whether this profile is active as a default.
      void setActiveByDefault​(boolean activeByDefault)
      Set flag specifying whether this profile is active as a default.
      void setFile​(ActivationFile file)
      Set specifies that this profile will be activated based on existence of a file.
      void setJdk​(java.lang.String jdk)
      Set specifies that this profile will be activated when a matching JDK is detected.
      void setOs​(ActivationOS os)
      Set specifies that this profile will be activated when matching OS attributes are detected.
      void setProperty​(ActivationProperty property)
      Set specifies that this profile will be activated when this property is specified.
      • Methods inherited from class java.lang.Object

        equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • Activation

        public Activation()
    • Method Detail

      • clone

        public Activation clone()
        Method clone.
        Overrides:
        clone in class java.lang.Object
        Returns:
        Activation
      • getFile

        public ActivationFile getFile()
        Get specifies that this profile will be activated based on existence of a file.
        Returns:
        ActivationFile
      • getJdk

        public java.lang.String getJdk()
        Get specifies that this profile will be activated when a matching JDK is detected.
        Returns:
        String
      • getOs

        public ActivationOS getOs()
        Get specifies that this profile will be activated when matching OS attributes are detected.
        Returns:
        ActivationOS
      • getProperty

        public ActivationProperty getProperty()
        Get specifies that this profile will be activated when this property is specified.
        Returns:
        ActivationProperty
      • isActiveByDefault

        public boolean isActiveByDefault()
        Get flag specifying whether this profile is active as a default.
        Returns:
        boolean
      • setActiveByDefault

        public void setActiveByDefault​(boolean activeByDefault)
        Set flag specifying whether this profile is active as a default.
        Parameters:
        activeByDefault - a activeByDefault object.
      • setFile

        public void setFile​(ActivationFile file)
        Set specifies that this profile will be activated based on existence of a file.
        Parameters:
        file - a file object.
      • setJdk

        public void setJdk​(java.lang.String jdk)
        Set specifies that this profile will be activated when a matching JDK is detected.
        Parameters:
        jdk - a jdk object.
      • setOs

        public void setOs​(ActivationOS os)
        Set specifies that this profile will be activated when matching OS attributes are detected.
        Parameters:
        os - a os object.
      • setProperty

        public void setProperty​(ActivationProperty property)
        Set specifies that this profile will be activated when this property is specified.
        Parameters:
        property - a property object.