Package org.apache.tapestry5.alerts
Class Alert
- java.lang.Object
-
- org.apache.tapestry5.alerts.Alert
-
- All Implemented Interfaces:
Serializable
public class Alert extends Object implements Serializable
An Alert that may be presented to the user. The Alert has a message, but also includes a severity (that controls how it is presented to the user), and a duration (that controls how long it is presented to the user). If themarkup
field istrue
, the message is treated as HTML and used without any escaping.- Since:
- 5.3
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description Duration
duration
long
id
A unique id (unique within this JVM and execution), used to identify an alert (used primarily when individually dismissing an alert).boolean
markup
Defines whether the message will be treated as HTML or not.String
message
Severity
severity
-
Constructor Summary
Constructors Constructor Description Alert(String message)
Alert with default duration ofDuration.SINGLE
and default severity ofSeverity.INFO
.Alert(Duration duration, Severity severity, String message)
Alert(Duration duration, Severity severity, String message, boolean markup)
Alert(Severity severity, String message)
Alert with default duration ofDuration.SINGLE
.
-
-
-
Constructor Detail
-
Alert
public Alert(String message)
Alert with default duration ofDuration.SINGLE
and default severity ofSeverity.INFO
.
-
Alert
public Alert(Severity severity, String message)
Alert with default duration ofDuration.SINGLE
.
-
-