Class Message
- java.lang.Object
-
- com.funnelback.publicui.search.model.curator.data.Message
-
-
Field Summary
Fields Modifier and Type Field Description private Map<String,Object>
additionalProperties
Any additional properties associated with the message (for example CSS styling related information).private String
category
A category for the message which may be used by an FreeMarker template to display different types of messages in different ways.private String
messageHtml
The HTML content of the message to display.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected boolean
canEqual(Object other)
boolean
equals(Object o)
Map<String,Object>
getAdditionalProperties()
Any additional properties associated with the message (for example CSS styling related information).String
getCategory()
A category for the message which may be used by an FreeMarker template to display different types of messages in different ways.String
getMessageHtml()
The HTML content of the message to display.int
hashCode()
void
setAdditionalProperties(Map<String,Object> additionalProperties)
Any additional properties associated with the message (for example CSS styling related information).void
setCategory(String category)
A category for the message which may be used by an FreeMarker template to display different types of messages in different ways.void
setMessageHtml(String messageHtml)
The HTML content of the message to display.String
toString()
-
-
-
Field Detail
-
messageHtml
private String messageHtml
The HTML content of the message to display.
-
additionalProperties
private Map<String,Object> additionalProperties
Any additional properties associated with the message (for example CSS styling related information).
-
category
private String category
A category for the message which may be used by an FreeMarker template to display different types of messages in different ways.
-
-
Method Detail
-
canEqual
protected boolean canEqual(Object other)
-
getMessageHtml
public String getMessageHtml()
The HTML content of the message to display.
-
setMessageHtml
public void setMessageHtml(String messageHtml)
The HTML content of the message to display.
-
getAdditionalProperties
public Map<String,Object> getAdditionalProperties()
Any additional properties associated with the message (for example CSS styling related information).
-
setAdditionalProperties
public void setAdditionalProperties(Map<String,Object> additionalProperties)
Any additional properties associated with the message (for example CSS styling related information).
-
getCategory
public String getCategory()
A category for the message which may be used by an FreeMarker template to display different types of messages in different ways.
-
setCategory
public void setCategory(String category)
A category for the message which may be used by an FreeMarker template to display different types of messages in different ways.
-
-