Class FacesMessage
- java.lang.Object
- 
- jakarta.faces.application.FacesMessage
 
- 
- All Implemented Interfaces:
- Serializable
 
 public class FacesMessage extends Object implements Serializable FacesMessage represents a single validation (or other) message, which is typically associated with a particular component in the view. A FacesMessageinstance may be created based on a specificmessageId. The specification defines the set ofmessageIds for which there must beFacesMessageinstances.The implementation must take the following steps when creating FacesMessageinstances given amessageId:Call Application.getMessageBundle(). If non-null, locate the namedResourceBundle, using theLocalefrom the currentUIViewRootand see if it has a value for the argumentmessageId. If it does, treat the value as thesummaryof theFacesMessage. If it does not, or ifApplication.getMessageBundle()returnednull, look in theResourceBundlenamed by the value of the constantFACES_MESSAGESand see if it has a value for the argumentmessageId. If it does, treat the value as thesummaryof theFacesMessage. If it does not, there is no initialization information for theFacesMessageinstance.In all cases, if a ResourceBundlehit is found for the{messageId}, look for further hits under the key{messageId}_detail. Use this value, if present, as thedetailfor the returnedFacesMessage.Make sure to perform any parameter substitution required for the summaryanddetailof theFacesMessage.- See Also:
- Serialized Form
 
- 
- 
Nested Class SummaryNested Classes Modifier and Type Class Description static classFacesMessage.SeverityClass used to represent message severity levels in a typesafe enumeration.
 - 
Field SummaryFields Modifier and Type Field Description static StringFACES_MESSAGESResourceBundleidentifier for messages whose message identifiers are defined in the Jakarta Faces specification.static FacesMessage.SeveritySEVERITY_ERRORMessage severity level indicating that an error has occurred.static FacesMessage.SeveritySEVERITY_FATALMessage severity level indicating that a serious error has occurred.static FacesMessage.SeveritySEVERITY_INFOMessage severity level indicating an informational message rather than an error.static FacesMessage.SeveritySEVERITY_WARNMessage severity level indicating that an error might have occurred.static ListVALUESImmutableListof validFacesMessage.Severityinstances, in ascending order of their ordinal value.static MapVALUES_MAPImmutableMapof validFacesMessage.Severityinstances, keyed by name.
 - 
Constructor SummaryConstructors Constructor Description FacesMessage()Construct a newFacesMessagewith no initial values.FacesMessage(FacesMessage.Severity severity, String summary, String detail)Construct a newFacesMessagewith the specified initial values.FacesMessage(String summary)Construct a newFacesMessagewith just a summary.FacesMessage(String summary, String detail)Construct a newFacesMessagewith the specified initial values.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDetail()Return the localized detail text.FacesMessage.SeveritygetSeverity()Return the severity level.StringgetSummary()Return the localized summary text.booleanisRendered()voidrendered()Marks this message as having been rendered to the client.voidsetDetail(String detail)Set the localized detail text.voidsetSeverity(FacesMessage.Severity severity)Set the severity level.voidsetSummary(String summary)Set the localized summary text.
 
- 
- 
- 
Field Detail- 
FACES_MESSAGESpublic static final String FACES_MESSAGES ResourceBundleidentifier for messages whose message identifiers are defined in the Jakarta Faces specification.- See Also:
- Constant Field Values
 
 - 
SEVERITY_INFOpublic static final FacesMessage.Severity SEVERITY_INFO Message severity level indicating an informational message rather than an error. 
 - 
SEVERITY_WARNpublic static final FacesMessage.Severity SEVERITY_WARN Message severity level indicating that an error might have occurred. 
 - 
SEVERITY_ERRORpublic static final FacesMessage.Severity SEVERITY_ERROR Message severity level indicating that an error has occurred. 
 - 
SEVERITY_FATALpublic static final FacesMessage.Severity SEVERITY_FATAL Message severity level indicating that a serious error has occurred. 
 - 
VALUESpublic static final List VALUES Immutable Listof validFacesMessage.Severityinstances, in ascending order of their ordinal value.
 - 
VALUES_MAPpublic static final Map VALUES_MAP Immutable Mapof validFacesMessage.Severityinstances, keyed by name.
 
- 
 - 
Constructor Detail- 
FacesMessagepublic FacesMessage() Construct a new FacesMessagewith no initial values. The severity is set to Severity.INFO.
 - 
FacesMessagepublic FacesMessage(String summary) Construct a new FacesMessagewith just a summary. The detail isnull, the severity is set toSeverity.INFO.- Parameters:
- summary- the summary.
 
 - 
FacesMessagepublic FacesMessage(String summary, String detail) Construct a new FacesMessagewith the specified initial values. The severity is set to Severity.INFO.- Parameters:
- summary- Localized summary message text
- detail- Localized detail message text
- Throws:
- IllegalArgumentException- if the specified severity level is not one of the supported values
 
 - 
FacesMessagepublic FacesMessage(FacesMessage.Severity severity, String summary, String detail) Construct a new FacesMessagewith the specified initial values.- Parameters:
- severity- the severity
- summary- Localized summary message text
- detail- Localized detail message text
- Throws:
- IllegalArgumentException- if the specified severity level is not one of the supported values
 
 
- 
 - 
Method Detail- 
getDetailpublic String getDetail() Return the localized detail text. If no localized detail text has been defined for this message, return the localized summary text instead. - Returns:
- the localized detail text.
 
 - 
setDetailpublic void setDetail(String detail) Set the localized detail text. - Parameters:
- detail- The new localized detail text
 
 - 
getSeveritypublic FacesMessage.Severity getSeverity() Return the severity level. - Returns:
- the severity level.
 
 - 
setSeveritypublic void setSeverity(FacesMessage.Severity severity) Set the severity level. - Parameters:
- severity- The new severity level
- Throws:
- IllegalArgumentException- if the specified severity level is not one of the supported values
 
 - 
getSummarypublic String getSummary() Return the localized summary text. - Returns:
- the localized summary text.
 
 - 
setSummarypublic void setSummary(String summary) Set the localized summary text. - Parameters:
- summary- The new localized summary text
 
 - 
isRenderedpublic boolean isRendered() - Returns:
- trueif- rendered()has been called, otherwise- false
- Since:
- 2.0
 
 - 
renderedpublic void rendered() Marks this message as having been rendered to the client. - Since:
- 2.0
 
 
- 
 
-