Package org.apache.maven.model
Class Notifier
- java.lang.Object
-
- org.apache.maven.model.Notifier
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Cloneable
,InputLocationTracker
public class Notifier extends java.lang.Object implements java.io.Serializable, java.lang.Cloneable, InputLocationTracker
Configures one method for notifying users/developers when a build breaks.- Version:
- $Revision$ $Date$
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Notifier()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addConfiguration(java.lang.String key, java.lang.String value)
Method addConfiguration.Notifier
clone()
Method clone.java.lang.String
getAddress()
Get Deprecated.java.util.Properties
getConfiguration()
Method getConfiguration.InputLocation
getLocation(java.lang.Object key)
Gets the location of the specified field in the input source.java.lang.String
getType()
Get the mechanism used to deliver notifications.boolean
isSendOnError()
Get whether to send notifications on error.boolean
isSendOnFailure()
Get whether to send notifications on failure.boolean
isSendOnSuccess()
Get whether to send notifications on success.boolean
isSendOnWarning()
Get whether to send notifications on warning.void
setAddress(java.lang.String address)
Set Deprecated.void
setConfiguration(java.util.Properties configuration)
Set extended configuration specific to this notifier goes here.void
setLocation(java.lang.Object key, InputLocation location)
Sets the location of the specified field.void
setSendOnError(boolean sendOnError)
Set whether to send notifications on error.void
setSendOnFailure(boolean sendOnFailure)
Set whether to send notifications on failure.void
setSendOnSuccess(boolean sendOnSuccess)
Set whether to send notifications on success.void
setSendOnWarning(boolean sendOnWarning)
Set whether to send notifications on warning.void
setType(java.lang.String type)
Set the mechanism used to deliver notifications.
-
-
-
Method Detail
-
addConfiguration
public void addConfiguration(java.lang.String key, java.lang.String value)
Method addConfiguration.- Parameters:
key
-value
-
-
clone
public Notifier clone()
Method clone.- Overrides:
clone
in classjava.lang.Object
- Returns:
- Notifier
-
getAddress
public java.lang.String getAddress()
Get Deprecated. Where to send the notification to - eg email address.- Returns:
- String
-
getConfiguration
public java.util.Properties getConfiguration()
Method getConfiguration.- Returns:
- Properties
-
getLocation
public InputLocation getLocation(java.lang.Object key)
Description copied from interface:InputLocationTracker
Gets the location of the specified field in the input source.- Specified by:
getLocation
in interfaceInputLocationTracker
- Parameters:
key
-- Returns:
- InputLocation
-
getType
public java.lang.String getType()
Get the mechanism used to deliver notifications.- Returns:
- String
-
isSendOnError
public boolean isSendOnError()
Get whether to send notifications on error.- Returns:
- boolean
-
isSendOnFailure
public boolean isSendOnFailure()
Get whether to send notifications on failure.- Returns:
- boolean
-
isSendOnSuccess
public boolean isSendOnSuccess()
Get whether to send notifications on success.- Returns:
- boolean
-
isSendOnWarning
public boolean isSendOnWarning()
Get whether to send notifications on warning.- Returns:
- boolean
-
setAddress
public void setAddress(java.lang.String address)
Set Deprecated. Where to send the notification to - eg email address.- Parameters:
address
-
-
setConfiguration
public void setConfiguration(java.util.Properties configuration)
Set extended configuration specific to this notifier goes here.- Parameters:
configuration
-
-
setLocation
public void setLocation(java.lang.Object key, InputLocation location)
Description copied from interface:InputLocationTracker
Sets the location of the specified field.- Specified by:
setLocation
in interfaceInputLocationTracker
- Parameters:
key
-location
-
-
setSendOnError
public void setSendOnError(boolean sendOnError)
Set whether to send notifications on error.- Parameters:
sendOnError
-
-
setSendOnFailure
public void setSendOnFailure(boolean sendOnFailure)
Set whether to send notifications on failure.- Parameters:
sendOnFailure
-
-
setSendOnSuccess
public void setSendOnSuccess(boolean sendOnSuccess)
Set whether to send notifications on success.- Parameters:
sendOnSuccess
-
-
setSendOnWarning
public void setSendOnWarning(boolean sendOnWarning)
Set whether to send notifications on warning.- Parameters:
sendOnWarning
-
-
setType
public void setType(java.lang.String type)
Set the mechanism used to deliver notifications.- Parameters:
type
-
-
-