Class CrossViewScopeClientResponseData
- java.lang.Object
-
- de.xima.fc.gui.bean.designer.conversation.CrossViewScopeClientResponseData
-
- All Implemented Interfaces:
Serializable
public final class CrossViewScopeClientResponseData extends Object implements Serializable
POJO model for the data received from the client to a cross view scope push message.- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CrossViewScopeClientResponseData()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description com.alibaba.fastjson.JSONObjectgetClientData()StringgetError()StringgetHandlerToken()voidsetClientData(com.alibaba.fastjson.JSONObject clientData)voidsetError(String error)voidsetHandlerToken(String handlerToken)
-
-
-
Method Detail
-
getClientData
public com.alibaba.fastjson.JSONObject getClientData()
- Returns:
- Additional data returned from the client.
-
getError
public String getError()
- Returns:
- Error message if an error occurred on the client.
-
getHandlerToken
public String getHandlerToken()
- Returns:
- Token for this request that was echoed back.
-
setClientData
public void setClientData(com.alibaba.fastjson.JSONObject clientData)
- Parameters:
clientData- Additional data returned from the client.
-
setError
public void setError(String error)
- Parameters:
error- Error message if an error occurred on the client.
-
setHandlerToken
public void setHandlerToken(String handlerToken)
- Parameters:
handlerToken- Token for this request that was echoed back.
-
-