org.apache.tapestry5.alerts
Class Alert
java.lang.Object
   org.apache.tapestry5.alerts.Alert
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).
- Since:
- 5.3
- See Also:
- Serialized Form
 
 
 
 
id
public final long id
- A unique id (unique within this JVM and execution), used to identify an alert (used primarily
 when individually dismissing an alert).
 
 
duration
public final Duration duration
severity
public final Severity severity
message
public final String message
Alert
public Alert(String message)
- Alert with default duration of Duration.SINGLEand default severity
 ofSeverity.INFO.
 
Alert
public Alert(Severity severity,
             String message)
- Alert with default duration of Duration.SINGLE.
 
Alert
public Alert(Duration duration,
             Severity severity,
             String message)
toString
public String toString()
- 
- Overrides:
- toStringin class- Object
 
- 
 
toJSON
public JSONObject toJSON()
- 
 
- 
 
Copyright © 2003-2012 The Apache Software Foundation.