java.lang.Object
org.apache.maven.plugins.changes.model.AbstractRelease
org.apache.maven.plugins.changes.model.Release
All Implemented Interfaces:
Serializable

public class Release extends AbstractRelease implements Serializable
A single release of this project.
Version:
$Revision$ $Date$
See Also:
  • Constructor Details

    • Release

      public Release()
  • Method Details

    • addAction

      public void addAction(Action action)
      Method addAction.
      Parameters:
      action - a action object.
    • getActions

      public List<Action> getActions()
      Method getActions.
      Specified by:
      getActions in class AbstractRelease
      Returns:
      List
    • getDateRelease

      public String getDateRelease()
      Get the date of this release.

      This field can be any string, such as "in SVN" when the version isn't yet released but the ISO 8601 date format is recommended.

      Returns:
      String
    • getDescription

      public String getDescription()
      Get a short description of this release.
      Returns:
      String
    • getVersion

      public String getVersion()
      Get the version number associated with this release.
      Returns:
      String
    • removeAction

      public void removeAction(Action action)
      Method removeAction.
      Parameters:
      action - a action object.
    • setActions

      public void setActions(List<Action> actions)
      Set the list of actions taken for this release.
      Parameters:
      actions - a actions object.
    • setDateRelease

      public void setDateRelease(String dateRelease)
      Set the date of this release.

      This field can be any string, such as "in SVN" when the version isn't yet released but the ISO 8601 date format is recommended.

      Parameters:
      dateRelease - a dateRelease object.
    • setDescription

      public void setDescription(String description)
      Set a short description of this release.
      Parameters:
      description - a description object.
    • setVersion

      public void setVersion(String version)
      Set the version number associated with this release.
      Parameters:
      version - a version object.