Class CiManagement

java.lang.Object
org.apache.maven.model.CiManagement
All Implemented Interfaces:
Serializable, Cloneable, InputLocationTracker

public class CiManagement extends Object implements Serializable, Cloneable, InputLocationTracker
The <CiManagement> element contains informations required to the continuous integration system of the project.
Version:
$Revision$ $Date$
See Also:
  • Constructor Details

    • CiManagement

      public CiManagement()
  • Method Details

    • addNotifier

      public void addNotifier(Notifier notifier)
      Method addNotifier.
      Parameters:
      notifier - a notifier object.
    • clone

      public CiManagement clone()
      Method clone.
      Overrides:
      clone in class Object
      Returns:
      CiManagement
    • getLocation

      public InputLocation getLocation(Object key)
      Description copied from interface: InputLocationTracker
      Gets the location of the specified field in the input source.
      Specified by:
      getLocation in interface InputLocationTracker
      Parameters:
      key - a key object.
      Returns:
      InputLocation
    • getNotifiers

      public List<Notifier> getNotifiers()
      Method getNotifiers.
      Returns:
      List
    • setLocation

      public void setLocation(Object key, InputLocation location)
      Description copied from interface: InputLocationTracker
      Sets the location of the specified field.
      Specified by:
      setLocation in interface InputLocationTracker
      Parameters:
      key - a key object.
      location - a location object.
    • setOtherLocation

      public void setOtherLocation(Object key, InputLocation location)
      Parameters:
      key - a key object.
      location - a location object.
    • getSystem

      public String getSystem()
      Get the name of the continuous integration system, e.g. continuum.
      Returns:
      String
    • getUrl

      public String getUrl()
      Get uRL for the continuous integration system used by the project if it has a web interface.
      Returns:
      String
    • removeNotifier

      public void removeNotifier(Notifier notifier)
      Method removeNotifier.
      Parameters:
      notifier - a notifier object.
    • setNotifiers

      public void setNotifiers(List<Notifier> notifiers)
      Set configuration for notifying developers/users when a build is unsuccessful, including user information and notification mode.
      Parameters:
      notifiers - a notifiers object.
    • setSystem

      public void setSystem(String system)
      Set the name of the continuous integration system, e.g. continuum.
      Parameters:
      system - a system object.
    • setUrl

      public void setUrl(String url)
      Set uRL for the continuous integration system used by the project if it has a web interface.
      Parameters:
      url - a url object.