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 aFacesMessagewith its client ID.- Since:
- 7.1.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 StringgetClientId()javax.faces.application.FacesMessagegetMessage()
-
-
-
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.
-
-