Database Table: ParticipantMessageLink
Participant Message Link:
Represents a hyperlink to be displayed as part of a ParticipantMessage.
A ParticipantMessage can include hyperlinks that the user can click on. A persisted ParticipantMessage uses this table to manage the links that are to be displayed. These links can contain parameters that are resolved when the message is to be displayed.
Example James Smith logs into the citizen account and sees message on the citizen account home page indicating 'Your latest payment of $140 was due on 2010-06-14. Click here to view the payment details. Your next payment is due on 2010-12-12. Click My Payments to view your payment history.' This entity is used to store the link target and localizable text that comprises the "Click here" link. |
Location in Model: | Logical View::MetaModel::Curam::WorkspaceServices::ParticipantMessages::ParticipantMessageLink::ParticipantMessageLink |
Controlling File: | WorkspaceServices\model\Packages\ParticipantMessages\ParticipantMessages.efx |
Attribute | Stereotype | Nullable | Description | Domain Definition | Codetable | DDL Type |
participantMessageLinkID | key | no | Unique identifier for this participant message link record. | INTERNAL_ID | | SVR_INT64 |
participantMessageID | details | | Unique identifier of the participant message associated with this participant message link record. | INTERNAL_ID | | SVR_INT64 |
linkID | details | | Unique identifier of the {@curam.advisor.entity.Link Link} record that stores the target of this message link. | INTERNAL_ID | | SVR_INT64 |
|
Index Name | Attributes |
PartMesLinkIdx | participantMessageID |
|
Operation | Stereotype | Options | Description | SQL |
insert | insert | AUTO_ID: participantMessageLinkID
| Standard Operation | |
modify | modify | | Standard Operation | |
read | read | | Standard Operation | |
remove | remove | | Standard Operation | |
searchByParticipantMessage | readmulti | WHERE: participantMessageID=:participantMessageID
| Returns a list of records based on the participant message specified. | |
|