Class Properties
- java.lang.Object
-
- com.funnelback.publicui.search.model.curator.data.Properties
-
- All Implemented Interfaces:
Exhibit
public class Properties extends Object implements Exhibit
Properties represents arbitrary structured data added by the curator system to be displayed within the search results.
May be most useful where structured data is needed, but neither
Message
norUrlAdvert
are appropriate.- Since:
- 13.0
-
-
Constructor Summary
Constructors Constructor Description Properties()
Properties(Map<String,Object> properties, String category)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected boolean
canEqual(Object other)
boolean
equals(Object o)
String
getCategory()
A category for the properties which may be used by a FreeMarker template to display different types of properties in different ways.Map<String,Object>
getProperties()
The data for the Properties object.int
hashCode()
void
setCategory(String category)
A category for the properties which may be used by a FreeMarker template to display different types of properties in different ways.void
setProperties(Map<String,Object> properties)
The data for the Properties object.String
toString()
-
-
-
Method Detail
-
canEqual
protected boolean canEqual(Object other)
-
setProperties
public void setProperties(Map<String,Object> properties)
The data for the Properties object.
-
getCategory
public String getCategory()
A category for the properties which may be used by a FreeMarker template to display different types of properties in different ways.
-
setCategory
public void setCategory(String category)
A category for the properties which may be used by a FreeMarker template to display different types of properties in different ways.
-
-