Package de.xima.fc.gui.common.model
Class SessionFacesMessage
- java.lang.Object
-
- de.xima.fc.gui.common.model.SessionFacesMessage
-
- All Implemented Interfaces:
Serializable
public class SessionFacesMessage extends Object implements Serializable
A message like aFacesMessage
, but with more additional information required for making the message useful during later in the session. During the session, these messages can be viewed in the backend at any time. We need to additional information such as when the message was created and where.- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SessionFacesMessage
fromClient(String summary, String detail, String severity, String origin)
String
getDetail()
String
getOrigin()
int
getSeverity()
String
getSummary()
long
getTime()
static SessionFacesMessage
valueOf(javax.faces.application.FacesMessage message, String origin)
-
-
-
Method Detail
-
valueOf
public static SessionFacesMessage valueOf(javax.faces.application.FacesMessage message, String origin)
-
fromClient
public static SessionFacesMessage fromClient(String summary, String detail, String severity, String origin)
-
getSummary
public String getSummary()
-
getDetail
public String getDetail()
-
getOrigin
public String getOrigin()
-
getSeverity
public int getSeverity()
-
getTime
public long getTime()
-
-