smalltalk
/
osmo-st-smpp
Archived
1
0
Fork 0

codec: Allow to set these attributes

This commit is contained in:
Holger Hans Peter Freyther 2014-06-17 18:35:29 +02:00
parent fbc0861df9
commit 4ce889fd26
1 changed files with 28 additions and 0 deletions

View File

@ -62,4 +62,32 @@ SMPPBodyBase subclass: SMPPBindTransmitterBody [
addressRange [
^addr_range
]
systemId: anId [
systemd_id := anId
]
password: aPassword [
password := aPassword
]
systemType: aType [
system_type := aType
]
version: aVersion [
version := aVersion
]
typeOfNumber: aNumber [
addr_ton := aNumber
]
numberingPlanIndicator: anIndicator [
addr_npi := anIndicator
]
addressRange: aRange [
addr_range := aRange
]
]