Interface ProductConfigMessage
-
- All Known Implementing Classes:
ProductConfigMessageImpl,ProductConfigMessageImplTest.DummyProductConfigMessageImpl
public interface ProductConfigMessageA general message within the context of CPQ.
The message can be uniquely identified with key and source.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.DategetEndDate()java.lang.StringgetExtendedMessage()java.lang.StringgetKey()java.lang.StringgetMessage()ProductConfigMessagePromoTypegetPromoType()ProductConfigMessageSeveritygetSeverity()ProductConfigMessageSourcegetSource()ProductConfigMessageSourceSubTypegetSourceSubType()
-
-
-
Method Detail
-
getKey
java.lang.String getKey()
- Returns:
- the key of this message, which is unique for a given message source
-
getMessage
java.lang.String getMessage()
- Returns:
- localized message
-
getSource
ProductConfigMessageSource getSource()
- Returns:
- source of the message
-
getSeverity
ProductConfigMessageSeverity getSeverity()
- Returns:
- severity of the message
-
getSourceSubType
ProductConfigMessageSourceSubType getSourceSubType()
- Returns:
- sub type of the message source
-
getExtendedMessage
java.lang.String getExtendedMessage()
- Returns:
- localized extended message
-
getEndDate
java.util.Date getEndDate()
- Returns:
- endDate of the message
-
getPromoType
ProductConfigMessagePromoType getPromoType()
- Returns:
- message type for promotion( is it oppotunity or applied promotion)
-
-