aboutsummaryrefslogtreecommitdiffstats
path: root/Messages.st
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-11-14 22:37:50 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-11-14 22:37:50 +0100
commit6ec4e192d39e03b4f63eb6b617f74e04914d644c (patch)
tree0a1df293bce1a5586fb078ca847e4465c236ab4b /Messages.st
TestPhone: Start with a lot of stubs..
Diffstat (limited to 'Messages.st')
-rw-r--r--Messages.st40
1 files changed, 40 insertions, 0 deletions
diff --git a/Messages.st b/Messages.st
new file mode 100644
index 0000000..dc1a076
--- /dev/null
+++ b/Messages.st
@@ -0,0 +1,40 @@
+"Messages for GSM04.08"
+
+Object subclass: LocationUpdatingRequest [
+ | imsi tmsi |
+
+ LocationUpdatingRequest class >> initWithIMSI: aImsi [
+ ^ (self new)
+ imsi: aImsi;
+ yourself
+ ]
+
+ LocationUpdatingRequest class >> initWithTMSI: aTmsi [
+ ^ (self new)
+ tmsi: aTmsi;
+ yourself
+ ]
+
+ toMessage [
+ ]
+]
+
+Object subclass: LocationUpdatingAccept [
+ toMessage [
+ ]
+]
+
+Object subclass: LocationUpdatingReject [
+ toMessage [
+ ]
+]
+
+Object subclass: IdentityRequest [
+ toMessage [
+ ]
+]
+
+Object subclass: IdentityResponse [
+ toMessage [
+ ]
+]