Adds payload delimiters around the input string
(self, value)
| 1217 | return caseExpression |
| 1218 | |
| 1219 | def addPayloadDelimiters(self, value): |
| 1220 | """ |
| 1221 | Adds payload delimiters around the input string |
| 1222 | """ |
| 1223 | |
| 1224 | return "%s%s%s" % (PAYLOAD_DELIMITER, value, PAYLOAD_DELIMITER) if value else value |
| 1225 | |
| 1226 | def removePayloadDelimiters(self, value): |
| 1227 | """ |