Class AlertManagerImpl
- java.lang.Object
-
- org.apache.tapestry5.internal.alerts.AlertManagerImpl
-
- All Implemented Interfaces:
AlertManager
public class AlertManagerImpl extends Object implements AlertManager
-
-
Constructor Summary
Constructors Constructor Description AlertManagerImpl(ApplicationStateManager asm, Request request, AjaxResponseRenderer ajaxResponseRenderer, PerthreadManager perThreadManager)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
alert(Duration duration, Severity severity, String message)
Adds an alert with configurable severity and duration.void
alert(Duration duration, Severity severity, String message, boolean markup)
Adds an alert with configurable severity and duration.void
error(String message)
Adds anSeverity.ERROR
alert with the default duration,Duration.SINGLE
.void
info(String message)
Adds anSeverity.INFO
alert with the default duration,Duration.SINGLE
.void
success(String message)
Adds anSeverity.SUCCESS
alert with the default duration,Duration.SINGLE
.void
warn(String message)
Adds anSeverity.WARN
alert with the default duration,Duration.SINGLE
.
-
-
-
Constructor Detail
-
AlertManagerImpl
public AlertManagerImpl(ApplicationStateManager asm, Request request, AjaxResponseRenderer ajaxResponseRenderer, PerthreadManager perThreadManager)
-
-
Method Detail
-
success
public void success(String message)
Description copied from interface:AlertManager
Adds anSeverity.SUCCESS
alert with the default duration,Duration.SINGLE
.- Specified by:
success
in interfaceAlertManager
- Parameters:
message
- to present to the user
-
info
public void info(String message)
Description copied from interface:AlertManager
Adds anSeverity.INFO
alert with the default duration,Duration.SINGLE
.- Specified by:
info
in interfaceAlertManager
- Parameters:
message
- to present to the user
-
warn
public void warn(String message)
Description copied from interface:AlertManager
Adds anSeverity.WARN
alert with the default duration,Duration.SINGLE
.- Specified by:
warn
in interfaceAlertManager
- Parameters:
message
- to present to the user
-
error
public void error(String message)
Description copied from interface:AlertManager
Adds anSeverity.ERROR
alert with the default duration,Duration.SINGLE
.- Specified by:
error
in interfaceAlertManager
- Parameters:
message
- to present to the user
-
alert
public void alert(Duration duration, Severity severity, String message)
Description copied from interface:AlertManager
Adds an alert with configurable severity and duration. Message isn't treated as HTML, being HTML-escaped.- Specified by:
alert
in interfaceAlertManager
- Parameters:
duration
- controls how long the alert is presented to the userseverity
- controls how the alert is presented to the usermessage
- to present to the user
-
alert
public void alert(Duration duration, Severity severity, String message, boolean markup)
Description copied from interface:AlertManager
Adds an alert with configurable severity and duration.- Specified by:
alert
in interfaceAlertManager
- Parameters:
duration
- controls how long the alert is presented to the userseverity
- controls how the alert is presented to the usermessage
- to present to the usermarkup
- whether to treat the message as raw HTML (true) or escape it (false).
-
-