Interface BeanFacet
-
- All Known Subinterfaces:
BeanFacetDatasetSet,BeanFacetDataspaceSet,BeanFacetTableRef
public interface BeanFacetThis interface allows setting properties of a bean facet.- Since:
- 5.8.0
- See Also:
BeanElement
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidsetMessage(Severity aSeverity, String aMessage)Sets the message to display when the constraint check fails.voidsetMessage(UserMessage aMessage)Sets the localized error message to display when the constraint check fails.voidsetMessage(String aMessage)Sets the message to display when the constraint check fails.
-
-
-
Method Detail
-
setMessage
void setMessage(String aMessage)
Sets the message to display when the constraint check fails.- Parameters:
aMessage- the message that will be displayed with severity error.
-
setMessage
void setMessage(Severity aSeverity, String aMessage)
Sets the message to display when the constraint check fails.- Parameters:
aSeverity- the severity of the message.aMessage- the message that will be displayed.
-
setMessage
void setMessage(UserMessage aMessage)
Sets the localized error message to display when the constraint check fails.- Parameters:
aMessage- the localized message and severity that will be displayed.
-
-