Context
At the moment the relationships with Protocol and Tags are coded as follows:
Rel(BigBankPlc.SoftwareSystems.InternetBanking, BigBankPlc.SoftwareSystems.EMailSystem, "Send Password Changed Notification E-Mail\nSend New Account Created Notification E-Mail\n[SMTP]", $tags='protocol:smtp')
- Protocol is appended to a Label e.g.
\n[SMTP]
- Tags use ' e.g.
$tags='protocol:smtp'
Requirements
Code relationships with Protocol and Tags are coded as follows:
Rel(BigBankPlc.SoftwareSystems.InternetBanking, BigBankPlc.SoftwareSystems.EMailSystem, "Send Password Changed Notification E-Mail\nSend New Account Created Notification E-Mail", "SMTP", $tags="protocol:smtp")
- Use a dedicated Protocol parameter e.g.
, "SMTP"
- Use " when adding Tags e.g.
$tags="protocol:smtp"
Context
At the moment the relationships with Protocol and Tags are coded as follows:
\n[SMTP]$tags='protocol:smtp'Requirements
Code relationships with Protocol and Tags are coded as follows:
, "SMTP"$tags="protocol:smtp"