Class Message
- java.lang.Object
-
- com.funnelback.publicui.search.model.curator.data.Message
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.Map<java.lang.String,java.lang.Object>additionalPropertiesAny additional properties associated with the message (for example CSS styling related information).private java.lang.StringcategoryA category for the message which may be used by an FreeMarker template to display different types of messages in different ways.private java.lang.StringmessageHtmlThe HTML content of the message to display.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleancanEqual(java.lang.Object other)booleanequals(java.lang.Object o)java.util.Map<java.lang.String,java.lang.Object>getAdditionalProperties()Any additional properties associated with the message (for example CSS styling related information).java.lang.StringgetCategory()A category for the message which may be used by an FreeMarker template to display different types of messages in different ways.java.lang.StringgetMessageHtml()The HTML content of the message to display.inthashCode()voidsetAdditionalProperties(java.util.Map<java.lang.String,java.lang.Object> additionalProperties)Any additional properties associated with the message (for example CSS styling related information).voidsetCategory(java.lang.String category)A category for the message which may be used by an FreeMarker template to display different types of messages in different ways.voidsetMessageHtml(java.lang.String messageHtml)The HTML content of the message to display.java.lang.StringtoString()
-
-
-
Field Detail
-
messageHtml
private java.lang.String messageHtml
The HTML content of the message to display.
-
additionalProperties
private java.util.Map<java.lang.String,java.lang.Object> additionalProperties
Any additional properties associated with the message (for example CSS styling related information).
-
category
private java.lang.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
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
canEqual
protected boolean canEqual(java.lang.Object other)
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
getMessageHtml
public java.lang.String getMessageHtml()
The HTML content of the message to display.
-
setMessageHtml
public void setMessageHtml(java.lang.String messageHtml)
The HTML content of the message to display.
-
getAdditionalProperties
public java.util.Map<java.lang.String,java.lang.Object> getAdditionalProperties()
Any additional properties associated with the message (for example CSS styling related information).
-
setAdditionalProperties
public void setAdditionalProperties(java.util.Map<java.lang.String,java.lang.Object> additionalProperties)
Any additional properties associated with the message (for example CSS styling related information).
-
getCategory
public java.lang.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(java.lang.String category)
A category for the message which may be used by an FreeMarker template to display different types of messages in different ways.
-
-