org.apache.tapestry5.alerts
Interface AlertManager

All Known Implementing Classes:
AlertManagerImpl

public interface AlertManager

Manages Alerts (using the AlertStorage SSO. The behavior of the service switches during an Ajax request to directly add JavaScript to present the alerts.

Since:
5.3

Method Summary
 void alert(Duration duration, Severity severity, String message)
          Adds an alert with configurable severity and duration.
 void error(String message)
          Adds an Severity.ERROR alert with the default duration, Duration.SINGLE.
 void info(String message)
          Adds an Severity.INFO alert with the default duration, Duration.SINGLE.
 void warn(String message)
          Adds an Severity.WARN alert with the default duration, Duration.SINGLE.
 

Method Detail

info

void info(String message)
Adds an Severity.INFO alert with the default duration, Duration.SINGLE.

Parameters:
message - to present to the user

warn

void warn(String message)
Adds an Severity.WARN alert with the default duration, Duration.SINGLE.

Parameters:
message - to present to the user

error

void error(String message)
Adds an Severity.ERROR alert with the default duration, Duration.SINGLE.

Parameters:
message - to present to the user

alert

void alert(Duration duration,
           Severity severity,
           String message)
Adds an alert with configurable severity and duration.

Parameters:
duration - controls how long the alert is presented to the user
severity - controls how the alert is presented to the user
message - to present to the user


Copyright © 2003-2012 The Apache Software Foundation.