60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
-
+
-
+
-
+
-
+
-
+
-
+
|
[_password release];
[super dealloc];
}
- (void)setAuthzid: (OFString*)authzid
{
OF_SETTER(_authzid, authzid, YES, YES)
OF_SETTER(_authzid, authzid, true, 1)
}
- (OFString*)authzid
{
OF_GETTER(_authzid, YES)
OF_GETTER(_authzid, true)
}
- (void)setAuthcid: (OFString*)authcid
{
OF_SETTER(_authcid, authcid, YES, YES)
OF_SETTER(_authcid, authcid, true, 1)
}
- (OFString*)authcid
{
OF_GETTER(_authcid, YES)
OF_GETTER(_authcid, true)
}
- (void)setPassword: (OFString*)password
{
OF_SETTER(_password, password, YES, YES)
OF_SETTER(_password, password, true, 1)
}
- (OFString*)password
{
OF_GETTER(_password, YES)
OF_GETTER(_password, true)
}
- (OFDataArray*)initialMessage
{
return nil;
}
|