Class UpToDatePropertySetting

java.lang.Object
org.codehaus.mojo.buildhelper.UpToDatePropertySetting

public final class UpToDatePropertySetting extends Object
Holds settings for AbstractUpToDateProperty subclasses.
Since:
1.12
  • Field Details

    • fileSet

      @Parameter private org.apache.maven.shared.model.fileset.FileSet fileSet
      A set of source files.
    • name

      @Parameter(required=true) private String name
      The name of the property to set.
    • value

      @Parameter(defaultValue="true") private String value
      The property value to set if the up-to-date condition is fulfilled.
    • elseValue

      @Parameter(alias="else") private String elseValue
      The property value to set if the up-to-date condition is not fulfilled.
  • Constructor Details

    • UpToDatePropertySetting

      public UpToDatePropertySetting()
  • Method Details

    • getName

      public String getName()
    • getFileSet

      public org.apache.maven.shared.model.fileset.FileSet getFileSet()
    • getValue

      public String getValue()
    • setFileSet

      public void setFileSet(org.apache.maven.shared.model.fileset.FileSet fileSet)
    • setName

      public void setName(String name)
    • setValue

      public void setValue(String value)
    • getElse

      public String getElse()
    • setElse

      public void setElse(String elseValue)
    • validate

      void validate()