Package de.xima.fc.gui.model
Class TargettedFacesMessage
- java.lang.Object
-
- de.xima.fc.gui.model.TargettedFacesMessage
-
- All Implemented Interfaces:
Serializable
public final class TargettedFacesMessage extends Object implements Serializable
A pair of aFacesMessage
with its client ID.- Since:
- 8.0.0
- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TargettedFacesMessage(String clientId, javax.faces.application.FacesMessage message)
Creates a new POJO with the given data.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getClientId()
javax.faces.application.FacesMessage
getMessage()
-
-
-
Constructor Detail
-
TargettedFacesMessage
public TargettedFacesMessage(String clientId, javax.faces.application.FacesMessage message)
Creates a new POJO with the given data.- Parameters:
clientId
- Client ID of the message's target.message
- Message to wrap.
-
-
Method Detail
-
getClientId
public String getClientId()
- Returns:
- Client ID of the message's target.
-
getMessage
public javax.faces.application.FacesMessage getMessage()
- Returns:
- The wrapped faces message.
-
-