crowd-stefanwille 0.5.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +4 -0
- data/History.txt +37 -0
- data/README.rdoc +122 -0
- data/Rakefile +44 -0
- data/demo/crowd_demo.rb +24 -0
- data/lib/crowd/http/request.rb +6 -0
- data/lib/crowd/http/response.rb +5 -0
- data/lib/crowd/http/sso.rb +101 -0
- data/lib/crowd/soap/SecurityServerClient.rb +844 -0
- data/lib/crowd/soap/crowd-2.0.5.wsdl +3158 -0
- data/lib/crowd/soap/default.rb +1525 -0
- data/lib/crowd/soap/driver.rb +423 -0
- data/lib/crowd/soap/mapping_registry.rb +1614 -0
- data/lib/crowd/version.rb +9 -0
- data/lib/crowd.rb +669 -0
- data/spec/crowd_spec.rb +149 -0
- data/stefanwille-crowd.gemspec +62 -0
- metadata +112 -0
@@ -0,0 +1,1525 @@
|
|
1
|
+
require 'xsd/qname'
|
2
|
+
|
3
|
+
# {http://authentication.integration.crowd.atlassian.com}AuthenticatedToken
|
4
|
+
# name - SOAP::SOAPString
|
5
|
+
# token - SOAP::SOAPString
|
6
|
+
class AuthenticatedToken
|
7
|
+
attr_accessor :name
|
8
|
+
attr_accessor :token
|
9
|
+
|
10
|
+
def initialize(name = nil, token = nil)
|
11
|
+
@name = name
|
12
|
+
@token = token
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
# {http://authentication.integration.crowd.atlassian.com}PasswordCredential
|
17
|
+
# credential - SOAP::SOAPString
|
18
|
+
# encryptedCredential - SOAP::SOAPBoolean
|
19
|
+
class PasswordCredential
|
20
|
+
attr_accessor :credential
|
21
|
+
attr_accessor :encryptedCredential
|
22
|
+
|
23
|
+
def initialize(credential = nil, encryptedCredential = nil)
|
24
|
+
@credential = credential
|
25
|
+
@encryptedCredential = encryptedCredential
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
# {http://authentication.integration.crowd.atlassian.com}ArrayOfValidationFactor
|
30
|
+
class ArrayOfValidationFactor < ::Array
|
31
|
+
end
|
32
|
+
|
33
|
+
# {http://authentication.integration.crowd.atlassian.com}ValidationFactor
|
34
|
+
# name - SOAP::SOAPString
|
35
|
+
# value - SOAP::SOAPString
|
36
|
+
class ValidationFactor
|
37
|
+
attr_accessor :name
|
38
|
+
attr_accessor :value
|
39
|
+
|
40
|
+
def initialize(name = nil, value = nil)
|
41
|
+
@name = name
|
42
|
+
@value = value
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
# {http://authentication.integration.crowd.atlassian.com}UserAuthenticationContext
|
47
|
+
# application - SOAP::SOAPString
|
48
|
+
# credential - PasswordCredential
|
49
|
+
# name - SOAP::SOAPString
|
50
|
+
# validationFactors - ArrayOfValidationFactor
|
51
|
+
class UserAuthenticationContext
|
52
|
+
attr_accessor :application
|
53
|
+
attr_accessor :credential
|
54
|
+
attr_accessor :name
|
55
|
+
attr_accessor :validationFactors
|
56
|
+
|
57
|
+
def initialize(application = nil, credential = nil, name = nil, validationFactors = nil)
|
58
|
+
@application = application
|
59
|
+
@credential = credential
|
60
|
+
@name = name
|
61
|
+
@validationFactors = validationFactors
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
# {http://authentication.integration.crowd.atlassian.com}ApplicationAuthenticationContext
|
66
|
+
# credential - PasswordCredential
|
67
|
+
# name - SOAP::SOAPString
|
68
|
+
# validationFactors - ArrayOfValidationFactor
|
69
|
+
class ApplicationAuthenticationContext
|
70
|
+
attr_accessor :credential
|
71
|
+
attr_accessor :name
|
72
|
+
attr_accessor :validationFactors
|
73
|
+
|
74
|
+
def initialize(credential = nil, name = nil, validationFactors = nil)
|
75
|
+
@credential = credential
|
76
|
+
@name = name
|
77
|
+
@validationFactors = validationFactors
|
78
|
+
end
|
79
|
+
end
|
80
|
+
|
81
|
+
# {urn:SecurityServer}ArrayOfString
|
82
|
+
class ArrayOfString < ::Array
|
83
|
+
end
|
84
|
+
|
85
|
+
# {http://soap.integration.crowd.atlassian.com}ArrayOfSOAPNestableGroup
|
86
|
+
class ArrayOfSOAPNestableGroup < ::Array
|
87
|
+
end
|
88
|
+
|
89
|
+
# {http://soap.integration.crowd.atlassian.com}SOAPNestableGroup
|
90
|
+
# iD - SOAP::SOAPLong
|
91
|
+
# active - SOAP::SOAPBoolean
|
92
|
+
# attributes - ArrayOfSOAPAttribute
|
93
|
+
# conception - SOAP::SOAPDateTime
|
94
|
+
# description - SOAP::SOAPString
|
95
|
+
# directoryId - SOAP::SOAPLong
|
96
|
+
# groupMembers - ArrayOfString
|
97
|
+
# lastModified - SOAP::SOAPDateTime
|
98
|
+
# name - SOAP::SOAPString
|
99
|
+
class SOAPNestableGroup
|
100
|
+
attr_accessor :iD
|
101
|
+
attr_accessor :active
|
102
|
+
attr_accessor :attributes
|
103
|
+
attr_accessor :conception
|
104
|
+
attr_accessor :description
|
105
|
+
attr_accessor :directoryId
|
106
|
+
attr_accessor :groupMembers
|
107
|
+
attr_accessor :lastModified
|
108
|
+
attr_accessor :name
|
109
|
+
|
110
|
+
def initialize(iD = nil, active = nil, attributes = nil, conception = nil, description = nil, directoryId = nil, groupMembers = nil, lastModified = nil, name = nil)
|
111
|
+
@iD = iD
|
112
|
+
@active = active
|
113
|
+
@attributes = attributes
|
114
|
+
@conception = conception
|
115
|
+
@description = description
|
116
|
+
@directoryId = directoryId
|
117
|
+
@groupMembers = groupMembers
|
118
|
+
@lastModified = lastModified
|
119
|
+
@name = name
|
120
|
+
end
|
121
|
+
end
|
122
|
+
|
123
|
+
# {http://soap.integration.crowd.atlassian.com}ArrayOfSOAPAttribute
|
124
|
+
class ArrayOfSOAPAttribute < ::Array
|
125
|
+
end
|
126
|
+
|
127
|
+
# {http://soap.integration.crowd.atlassian.com}SOAPAttribute
|
128
|
+
# name - SOAP::SOAPString
|
129
|
+
# values - ArrayOfString
|
130
|
+
class SOAPAttribute
|
131
|
+
attr_accessor :name
|
132
|
+
attr_accessor :values
|
133
|
+
|
134
|
+
def initialize(name = nil, values = nil)
|
135
|
+
@name = name
|
136
|
+
@values = values
|
137
|
+
end
|
138
|
+
end
|
139
|
+
|
140
|
+
# {http://soap.integration.crowd.atlassian.com}SOAPGroup
|
141
|
+
# iD - SOAP::SOAPLong
|
142
|
+
# active - SOAP::SOAPBoolean
|
143
|
+
# attributes - ArrayOfSOAPAttribute
|
144
|
+
# conception - SOAP::SOAPDateTime
|
145
|
+
# description - SOAP::SOAPString
|
146
|
+
# directoryId - SOAP::SOAPLong
|
147
|
+
# lastModified - SOAP::SOAPDateTime
|
148
|
+
# members - ArrayOfString
|
149
|
+
# name - SOAP::SOAPString
|
150
|
+
class SOAPGroup
|
151
|
+
attr_accessor :iD
|
152
|
+
attr_accessor :active
|
153
|
+
attr_accessor :attributes
|
154
|
+
attr_accessor :conception
|
155
|
+
attr_accessor :description
|
156
|
+
attr_accessor :directoryId
|
157
|
+
attr_accessor :lastModified
|
158
|
+
attr_accessor :members
|
159
|
+
attr_accessor :name
|
160
|
+
|
161
|
+
def initialize(iD = nil, active = nil, attributes = nil, conception = nil, description = nil, directoryId = nil, lastModified = nil, members = nil, name = nil)
|
162
|
+
@iD = iD
|
163
|
+
@active = active
|
164
|
+
@attributes = attributes
|
165
|
+
@conception = conception
|
166
|
+
@description = description
|
167
|
+
@directoryId = directoryId
|
168
|
+
@lastModified = lastModified
|
169
|
+
@members = members
|
170
|
+
@name = name
|
171
|
+
end
|
172
|
+
end
|
173
|
+
|
174
|
+
# {http://soap.integration.crowd.atlassian.com}SOAPPrincipal
|
175
|
+
# iD - SOAP::SOAPLong
|
176
|
+
# active - SOAP::SOAPBoolean
|
177
|
+
# attributes - ArrayOfSOAPAttribute
|
178
|
+
# conception - SOAP::SOAPDateTime
|
179
|
+
# description - SOAP::SOAPString
|
180
|
+
# directoryId - SOAP::SOAPLong
|
181
|
+
# lastModified - SOAP::SOAPDateTime
|
182
|
+
# name - SOAP::SOAPString
|
183
|
+
class SOAPPrincipal
|
184
|
+
attr_accessor :iD
|
185
|
+
attr_accessor :active
|
186
|
+
attr_accessor :attributes
|
187
|
+
attr_accessor :conception
|
188
|
+
attr_accessor :description
|
189
|
+
attr_accessor :directoryId
|
190
|
+
attr_accessor :lastModified
|
191
|
+
attr_accessor :name
|
192
|
+
|
193
|
+
def initialize(iD = nil, active = nil, attributes = nil, conception = nil, description = nil, directoryId = nil, lastModified = nil, name = nil)
|
194
|
+
@iD = iD
|
195
|
+
@active = active
|
196
|
+
@attributes = attributes
|
197
|
+
@conception = conception
|
198
|
+
@description = description
|
199
|
+
@directoryId = directoryId
|
200
|
+
@lastModified = lastModified
|
201
|
+
@name = name
|
202
|
+
end
|
203
|
+
end
|
204
|
+
|
205
|
+
# {http://soap.integration.crowd.atlassian.com}SOAPCookieInfo
|
206
|
+
# domain - SOAP::SOAPString
|
207
|
+
# secure - SOAP::SOAPBoolean
|
208
|
+
class SOAPCookieInfo
|
209
|
+
attr_accessor :domain
|
210
|
+
attr_accessor :secure
|
211
|
+
|
212
|
+
def initialize(domain = nil, secure = nil)
|
213
|
+
@domain = domain
|
214
|
+
@secure = secure
|
215
|
+
end
|
216
|
+
end
|
217
|
+
|
218
|
+
# {http://soap.integration.crowd.atlassian.com}ArrayOfSearchRestriction
|
219
|
+
class ArrayOfSearchRestriction < ::Array
|
220
|
+
end
|
221
|
+
|
222
|
+
# {http://soap.integration.crowd.atlassian.com}SearchRestriction
|
223
|
+
# name - SOAP::SOAPString
|
224
|
+
# value - SOAP::SOAPString
|
225
|
+
class SearchRestriction
|
226
|
+
attr_accessor :name
|
227
|
+
attr_accessor :value
|
228
|
+
|
229
|
+
def initialize(name = nil, value = nil)
|
230
|
+
@name = name
|
231
|
+
@value = value
|
232
|
+
end
|
233
|
+
end
|
234
|
+
|
235
|
+
# {http://soap.integration.crowd.atlassian.com}ArrayOfSOAPGroup
|
236
|
+
class ArrayOfSOAPGroup < ::Array
|
237
|
+
end
|
238
|
+
|
239
|
+
# {http://soap.integration.crowd.atlassian.com}SOAPRole
|
240
|
+
# iD - SOAP::SOAPLong
|
241
|
+
# active - SOAP::SOAPBoolean
|
242
|
+
# attributes - ArrayOfSOAPAttribute
|
243
|
+
# conception - SOAP::SOAPDateTime
|
244
|
+
# description - SOAP::SOAPString
|
245
|
+
# directoryId - SOAP::SOAPLong
|
246
|
+
# lastModified - SOAP::SOAPDateTime
|
247
|
+
# members - ArrayOfString
|
248
|
+
# name - SOAP::SOAPString
|
249
|
+
class SOAPRole
|
250
|
+
attr_accessor :iD
|
251
|
+
attr_accessor :active
|
252
|
+
attr_accessor :attributes
|
253
|
+
attr_accessor :conception
|
254
|
+
attr_accessor :description
|
255
|
+
attr_accessor :directoryId
|
256
|
+
attr_accessor :lastModified
|
257
|
+
attr_accessor :members
|
258
|
+
attr_accessor :name
|
259
|
+
|
260
|
+
def initialize(iD = nil, active = nil, attributes = nil, conception = nil, description = nil, directoryId = nil, lastModified = nil, members = nil, name = nil)
|
261
|
+
@iD = iD
|
262
|
+
@active = active
|
263
|
+
@attributes = attributes
|
264
|
+
@conception = conception
|
265
|
+
@description = description
|
266
|
+
@directoryId = directoryId
|
267
|
+
@lastModified = lastModified
|
268
|
+
@members = members
|
269
|
+
@name = name
|
270
|
+
end
|
271
|
+
end
|
272
|
+
|
273
|
+
# {http://soap.integration.crowd.atlassian.com}ArrayOfSOAPPrincipalWithCredential
|
274
|
+
class ArrayOfSOAPPrincipalWithCredential < ::Array
|
275
|
+
end
|
276
|
+
|
277
|
+
# {http://soap.integration.crowd.atlassian.com}SOAPPrincipalWithCredential
|
278
|
+
# passwordCredential - PasswordCredential
|
279
|
+
# principal - SOAPPrincipal
|
280
|
+
class SOAPPrincipalWithCredential
|
281
|
+
attr_accessor :passwordCredential
|
282
|
+
attr_accessor :principal
|
283
|
+
|
284
|
+
def initialize(passwordCredential = nil, principal = nil)
|
285
|
+
@passwordCredential = passwordCredential
|
286
|
+
@principal = principal
|
287
|
+
end
|
288
|
+
end
|
289
|
+
|
290
|
+
# {http://soap.integration.crowd.atlassian.com}ArrayOfSOAPRole
|
291
|
+
class ArrayOfSOAPRole < ::Array
|
292
|
+
end
|
293
|
+
|
294
|
+
# {http://soap.integration.crowd.atlassian.com}ArrayOfSOAPPrincipal
|
295
|
+
class ArrayOfSOAPPrincipal < ::Array
|
296
|
+
end
|
297
|
+
|
298
|
+
# {http://exception.integration.crowd.atlassian.com}InvalidAuthorizationTokenException
|
299
|
+
class InvalidAuthorizationTokenException
|
300
|
+
def initialize
|
301
|
+
end
|
302
|
+
end
|
303
|
+
|
304
|
+
# {http://exception.integration.crowd.atlassian.com}InvalidGroupException
|
305
|
+
# entity - DirectoryEntity
|
306
|
+
class InvalidGroupException
|
307
|
+
attr_accessor :entity
|
308
|
+
|
309
|
+
def initialize(entity = nil)
|
310
|
+
@entity = entity
|
311
|
+
end
|
312
|
+
end
|
313
|
+
|
314
|
+
# {http://exception.integration.crowd.atlassian.com}ApplicationPermissionException
|
315
|
+
class ApplicationPermissionException
|
316
|
+
def initialize
|
317
|
+
end
|
318
|
+
end
|
319
|
+
|
320
|
+
# {http://exception.integration.crowd.atlassian.com}ObjectNotFoundException
|
321
|
+
class ObjectNotFoundException
|
322
|
+
def initialize
|
323
|
+
end
|
324
|
+
end
|
325
|
+
|
326
|
+
# {http://exception.integration.crowd.atlassian.com}InvalidTokenException
|
327
|
+
class InvalidTokenException
|
328
|
+
def initialize
|
329
|
+
end
|
330
|
+
end
|
331
|
+
|
332
|
+
# {http://exception.integration.crowd.atlassian.com}InvalidCredentialException
|
333
|
+
class InvalidCredentialException
|
334
|
+
def initialize
|
335
|
+
end
|
336
|
+
end
|
337
|
+
|
338
|
+
# {http://exception.integration.crowd.atlassian.com}InvalidUserException
|
339
|
+
# entity - DirectoryEntity
|
340
|
+
class InvalidUserException
|
341
|
+
attr_accessor :entity
|
342
|
+
|
343
|
+
def initialize(entity = nil)
|
344
|
+
@entity = entity
|
345
|
+
end
|
346
|
+
end
|
347
|
+
|
348
|
+
# {http://exception.integration.crowd.atlassian.com}ApplicationAccessDeniedException
|
349
|
+
class ApplicationAccessDeniedException
|
350
|
+
def initialize
|
351
|
+
end
|
352
|
+
end
|
353
|
+
|
354
|
+
# {http://exception.integration.crowd.atlassian.com}ExpiredCredentialException
|
355
|
+
class ExpiredCredentialException
|
356
|
+
def initialize
|
357
|
+
end
|
358
|
+
end
|
359
|
+
|
360
|
+
# {http://exception.integration.crowd.atlassian.com}InvalidAuthenticationException
|
361
|
+
class InvalidAuthenticationException
|
362
|
+
def initialize
|
363
|
+
end
|
364
|
+
end
|
365
|
+
|
366
|
+
# {http://exception.integration.crowd.atlassian.com}InactiveAccountException
|
367
|
+
# user - User
|
368
|
+
class InactiveAccountException
|
369
|
+
attr_accessor :user
|
370
|
+
|
371
|
+
def initialize(user = nil)
|
372
|
+
@user = user
|
373
|
+
end
|
374
|
+
end
|
375
|
+
|
376
|
+
# {http://exception.integration.crowd.atlassian.com}BulkAddFailedException
|
377
|
+
# existingUsers - ArrayOfString
|
378
|
+
# failedUsers - ArrayOfString
|
379
|
+
class BulkAddFailedException
|
380
|
+
attr_accessor :existingUsers
|
381
|
+
attr_accessor :failedUsers
|
382
|
+
|
383
|
+
def initialize(existingUsers = nil, failedUsers = nil)
|
384
|
+
@existingUsers = existingUsers
|
385
|
+
@failedUsers = failedUsers
|
386
|
+
end
|
387
|
+
end
|
388
|
+
|
389
|
+
# {http://exception.integration.crowd.atlassian.com}InvalidRoleException
|
390
|
+
# entity - DirectoryEntity
|
391
|
+
class InvalidRoleException
|
392
|
+
attr_accessor :entity
|
393
|
+
|
394
|
+
def initialize(entity = nil)
|
395
|
+
@entity = entity
|
396
|
+
end
|
397
|
+
end
|
398
|
+
|
399
|
+
# {http://exception.integration.crowd.atlassian.com}InvalidEmailAddressException
|
400
|
+
class InvalidEmailAddressException
|
401
|
+
def initialize
|
402
|
+
end
|
403
|
+
end
|
404
|
+
|
405
|
+
# {http://rmi.java}RemoteException
|
406
|
+
# cause - Throwable
|
407
|
+
# message - SOAP::SOAPString
|
408
|
+
class RemoteException
|
409
|
+
attr_accessor :cause
|
410
|
+
attr_accessor :message
|
411
|
+
|
412
|
+
def initialize(cause = nil, message = nil)
|
413
|
+
@cause = cause
|
414
|
+
@message = message
|
415
|
+
end
|
416
|
+
end
|
417
|
+
|
418
|
+
# {http://lang.java}Throwable
|
419
|
+
class Throwable
|
420
|
+
def initialize
|
421
|
+
end
|
422
|
+
end
|
423
|
+
|
424
|
+
# {http://model.integration.crowd.atlassian.com}DirectoryEntity
|
425
|
+
# directoryId - SOAP::SOAPLong
|
426
|
+
# name - SOAP::SOAPString
|
427
|
+
class DirectoryEntity
|
428
|
+
attr_accessor :directoryId
|
429
|
+
attr_accessor :name
|
430
|
+
|
431
|
+
def initialize(directoryId = nil, name = nil)
|
432
|
+
@directoryId = directoryId
|
433
|
+
@name = name
|
434
|
+
end
|
435
|
+
end
|
436
|
+
|
437
|
+
# {http://user.model.integration.crowd.atlassian.com}User
|
438
|
+
# active - SOAP::SOAPBoolean
|
439
|
+
# displayName - SOAP::SOAPString
|
440
|
+
# emailAddress - SOAP::SOAPString
|
441
|
+
# firstName - SOAP::SOAPString
|
442
|
+
# iconLocation - SOAP::SOAPString
|
443
|
+
# lastName - SOAP::SOAPString
|
444
|
+
# directoryId - SOAP::SOAPLong
|
445
|
+
# name - SOAP::SOAPString
|
446
|
+
class User
|
447
|
+
attr_accessor :active
|
448
|
+
attr_accessor :displayName
|
449
|
+
attr_accessor :emailAddress
|
450
|
+
attr_accessor :firstName
|
451
|
+
attr_accessor :iconLocation
|
452
|
+
attr_accessor :lastName
|
453
|
+
attr_accessor :directoryId
|
454
|
+
attr_accessor :name
|
455
|
+
|
456
|
+
def initialize(active = nil, displayName = nil, emailAddress = nil, firstName = nil, iconLocation = nil, lastName = nil, directoryId = nil, name = nil)
|
457
|
+
@active = active
|
458
|
+
@displayName = displayName
|
459
|
+
@emailAddress = emailAddress
|
460
|
+
@firstName = firstName
|
461
|
+
@iconLocation = iconLocation
|
462
|
+
@lastName = lastName
|
463
|
+
@directoryId = directoryId
|
464
|
+
@name = name
|
465
|
+
end
|
466
|
+
end
|
467
|
+
|
468
|
+
# {urn:SecurityServer}findAllGroupRelationships
|
469
|
+
# in0 - AuthenticatedToken
|
470
|
+
class FindAllGroupRelationships
|
471
|
+
attr_accessor :in0
|
472
|
+
|
473
|
+
def initialize(in0 = nil)
|
474
|
+
@in0 = in0
|
475
|
+
end
|
476
|
+
end
|
477
|
+
|
478
|
+
# {urn:SecurityServer}findAllGroupRelationshipsResponse
|
479
|
+
# out - ArrayOfSOAPNestableGroup
|
480
|
+
class FindAllGroupRelationshipsResponse
|
481
|
+
attr_accessor :out
|
482
|
+
|
483
|
+
def initialize(out = nil)
|
484
|
+
@out = out
|
485
|
+
end
|
486
|
+
end
|
487
|
+
|
488
|
+
# {urn:SecurityServer}addGroup
|
489
|
+
# in0 - AuthenticatedToken
|
490
|
+
# in1 - SOAPGroup
|
491
|
+
class AddGroup
|
492
|
+
attr_accessor :in0
|
493
|
+
attr_accessor :in1
|
494
|
+
|
495
|
+
def initialize(in0 = nil, in1 = nil)
|
496
|
+
@in0 = in0
|
497
|
+
@in1 = in1
|
498
|
+
end
|
499
|
+
end
|
500
|
+
|
501
|
+
# {urn:SecurityServer}addGroupResponse
|
502
|
+
# out - SOAPGroup
|
503
|
+
class AddGroupResponse
|
504
|
+
attr_accessor :out
|
505
|
+
|
506
|
+
def initialize(out = nil)
|
507
|
+
@out = out
|
508
|
+
end
|
509
|
+
end
|
510
|
+
|
511
|
+
# {urn:SecurityServer}addPrincipalToRole
|
512
|
+
# in0 - AuthenticatedToken
|
513
|
+
# in1 - SOAP::SOAPString
|
514
|
+
# in2 - SOAP::SOAPString
|
515
|
+
class AddPrincipalToRole
|
516
|
+
attr_accessor :in0
|
517
|
+
attr_accessor :in1
|
518
|
+
attr_accessor :in2
|
519
|
+
|
520
|
+
def initialize(in0 = nil, in1 = nil, in2 = nil)
|
521
|
+
@in0 = in0
|
522
|
+
@in1 = in1
|
523
|
+
@in2 = in2
|
524
|
+
end
|
525
|
+
end
|
526
|
+
|
527
|
+
# {urn:SecurityServer}addPrincipalToRoleResponse
|
528
|
+
class AddPrincipalToRoleResponse
|
529
|
+
def initialize
|
530
|
+
end
|
531
|
+
end
|
532
|
+
|
533
|
+
# {urn:SecurityServer}findPrincipalByToken
|
534
|
+
# in0 - AuthenticatedToken
|
535
|
+
# in1 - SOAP::SOAPString
|
536
|
+
class FindPrincipalByToken
|
537
|
+
attr_accessor :in0
|
538
|
+
attr_accessor :in1
|
539
|
+
|
540
|
+
def initialize(in0 = nil, in1 = nil)
|
541
|
+
@in0 = in0
|
542
|
+
@in1 = in1
|
543
|
+
end
|
544
|
+
end
|
545
|
+
|
546
|
+
# {urn:SecurityServer}findPrincipalByTokenResponse
|
547
|
+
# out - SOAPPrincipal
|
548
|
+
class FindPrincipalByTokenResponse
|
549
|
+
attr_accessor :out
|
550
|
+
|
551
|
+
def initialize(out = nil)
|
552
|
+
@out = out
|
553
|
+
end
|
554
|
+
end
|
555
|
+
|
556
|
+
# {urn:SecurityServer}updatePrincipalCredential
|
557
|
+
# in0 - AuthenticatedToken
|
558
|
+
# in1 - SOAP::SOAPString
|
559
|
+
# in2 - PasswordCredential
|
560
|
+
class UpdatePrincipalCredential
|
561
|
+
attr_accessor :in0
|
562
|
+
attr_accessor :in1
|
563
|
+
attr_accessor :in2
|
564
|
+
|
565
|
+
def initialize(in0 = nil, in1 = nil, in2 = nil)
|
566
|
+
@in0 = in0
|
567
|
+
@in1 = in1
|
568
|
+
@in2 = in2
|
569
|
+
end
|
570
|
+
end
|
571
|
+
|
572
|
+
# {urn:SecurityServer}updatePrincipalCredentialResponse
|
573
|
+
class UpdatePrincipalCredentialResponse
|
574
|
+
def initialize
|
575
|
+
end
|
576
|
+
end
|
577
|
+
|
578
|
+
# {urn:SecurityServer}getGrantedAuthorities
|
579
|
+
# in0 - AuthenticatedToken
|
580
|
+
class GetGrantedAuthorities
|
581
|
+
attr_accessor :in0
|
582
|
+
|
583
|
+
def initialize(in0 = nil)
|
584
|
+
@in0 = in0
|
585
|
+
end
|
586
|
+
end
|
587
|
+
|
588
|
+
# {urn:SecurityServer}getGrantedAuthoritiesResponse
|
589
|
+
# out - ArrayOfString
|
590
|
+
class GetGrantedAuthoritiesResponse
|
591
|
+
attr_accessor :out
|
592
|
+
|
593
|
+
def initialize(out = nil)
|
594
|
+
@out = out
|
595
|
+
end
|
596
|
+
end
|
597
|
+
|
598
|
+
# {urn:SecurityServer}addPrincipal
|
599
|
+
# in0 - AuthenticatedToken
|
600
|
+
# in1 - SOAPPrincipal
|
601
|
+
# in2 - PasswordCredential
|
602
|
+
class AddPrincipal
|
603
|
+
attr_accessor :in0
|
604
|
+
attr_accessor :in1
|
605
|
+
attr_accessor :in2
|
606
|
+
|
607
|
+
def initialize(in0 = nil, in1 = nil, in2 = nil)
|
608
|
+
@in0 = in0
|
609
|
+
@in1 = in1
|
610
|
+
@in2 = in2
|
611
|
+
end
|
612
|
+
end
|
613
|
+
|
614
|
+
# {urn:SecurityServer}addPrincipalResponse
|
615
|
+
# out - SOAPPrincipal
|
616
|
+
class AddPrincipalResponse
|
617
|
+
attr_accessor :out
|
618
|
+
|
619
|
+
def initialize(out = nil)
|
620
|
+
@out = out
|
621
|
+
end
|
622
|
+
end
|
623
|
+
|
624
|
+
# {urn:SecurityServer}addAttributeToPrincipal
|
625
|
+
# in0 - AuthenticatedToken
|
626
|
+
# in1 - SOAP::SOAPString
|
627
|
+
# in2 - SOAPAttribute
|
628
|
+
class AddAttributeToPrincipal
|
629
|
+
attr_accessor :in0
|
630
|
+
attr_accessor :in1
|
631
|
+
attr_accessor :in2
|
632
|
+
|
633
|
+
def initialize(in0 = nil, in1 = nil, in2 = nil)
|
634
|
+
@in0 = in0
|
635
|
+
@in1 = in1
|
636
|
+
@in2 = in2
|
637
|
+
end
|
638
|
+
end
|
639
|
+
|
640
|
+
# {urn:SecurityServer}addAttributeToPrincipalResponse
|
641
|
+
class AddAttributeToPrincipalResponse
|
642
|
+
def initialize
|
643
|
+
end
|
644
|
+
end
|
645
|
+
|
646
|
+
# {urn:SecurityServer}invalidatePrincipalToken
|
647
|
+
# in0 - AuthenticatedToken
|
648
|
+
# in1 - SOAP::SOAPString
|
649
|
+
class InvalidatePrincipalToken
|
650
|
+
attr_accessor :in0
|
651
|
+
attr_accessor :in1
|
652
|
+
|
653
|
+
def initialize(in0 = nil, in1 = nil)
|
654
|
+
@in0 = in0
|
655
|
+
@in1 = in1
|
656
|
+
end
|
657
|
+
end
|
658
|
+
|
659
|
+
# {urn:SecurityServer}invalidatePrincipalTokenResponse
|
660
|
+
class InvalidatePrincipalTokenResponse
|
661
|
+
def initialize
|
662
|
+
end
|
663
|
+
end
|
664
|
+
|
665
|
+
# {urn:SecurityServer}findAllGroupNames
|
666
|
+
# in0 - AuthenticatedToken
|
667
|
+
class FindAllGroupNames
|
668
|
+
attr_accessor :in0
|
669
|
+
|
670
|
+
def initialize(in0 = nil)
|
671
|
+
@in0 = in0
|
672
|
+
end
|
673
|
+
end
|
674
|
+
|
675
|
+
# {urn:SecurityServer}findAllGroupNamesResponse
|
676
|
+
# out - ArrayOfString
|
677
|
+
class FindAllGroupNamesResponse
|
678
|
+
attr_accessor :out
|
679
|
+
|
680
|
+
def initialize(out = nil)
|
681
|
+
@out = out
|
682
|
+
end
|
683
|
+
end
|
684
|
+
|
685
|
+
# {urn:SecurityServer}findRoleMemberships
|
686
|
+
# in0 - AuthenticatedToken
|
687
|
+
# in1 - SOAP::SOAPString
|
688
|
+
class FindRoleMemberships
|
689
|
+
attr_accessor :in0
|
690
|
+
attr_accessor :in1
|
691
|
+
|
692
|
+
def initialize(in0 = nil, in1 = nil)
|
693
|
+
@in0 = in0
|
694
|
+
@in1 = in1
|
695
|
+
end
|
696
|
+
end
|
697
|
+
|
698
|
+
# {urn:SecurityServer}findRoleMembershipsResponse
|
699
|
+
# out - ArrayOfString
|
700
|
+
class FindRoleMembershipsResponse
|
701
|
+
attr_accessor :out
|
702
|
+
|
703
|
+
def initialize(out = nil)
|
704
|
+
@out = out
|
705
|
+
end
|
706
|
+
end
|
707
|
+
|
708
|
+
# {urn:SecurityServer}removePrincipal
|
709
|
+
# in0 - AuthenticatedToken
|
710
|
+
# in1 - SOAP::SOAPString
|
711
|
+
class RemovePrincipal
|
712
|
+
attr_accessor :in0
|
713
|
+
attr_accessor :in1
|
714
|
+
|
715
|
+
def initialize(in0 = nil, in1 = nil)
|
716
|
+
@in0 = in0
|
717
|
+
@in1 = in1
|
718
|
+
end
|
719
|
+
end
|
720
|
+
|
721
|
+
# {urn:SecurityServer}removePrincipalResponse
|
722
|
+
class RemovePrincipalResponse
|
723
|
+
def initialize
|
724
|
+
end
|
725
|
+
end
|
726
|
+
|
727
|
+
# {urn:SecurityServer}isValidPrincipalToken
|
728
|
+
# in0 - AuthenticatedToken
|
729
|
+
# in1 - SOAP::SOAPString
|
730
|
+
# in2 - ArrayOfValidationFactor
|
731
|
+
class IsValidPrincipalToken
|
732
|
+
attr_accessor :in0
|
733
|
+
attr_accessor :in1
|
734
|
+
attr_accessor :in2
|
735
|
+
|
736
|
+
def initialize(in0 = nil, in1 = nil, in2 = nil)
|
737
|
+
@in0 = in0
|
738
|
+
@in1 = in1
|
739
|
+
@in2 = in2
|
740
|
+
end
|
741
|
+
end
|
742
|
+
|
743
|
+
# {urn:SecurityServer}isValidPrincipalTokenResponse
|
744
|
+
# out - SOAP::SOAPBoolean
|
745
|
+
class IsValidPrincipalTokenResponse
|
746
|
+
attr_accessor :out
|
747
|
+
|
748
|
+
def initialize(out = nil)
|
749
|
+
@out = out
|
750
|
+
end
|
751
|
+
end
|
752
|
+
|
753
|
+
# {urn:SecurityServer}authenticatePrincipalSimple
|
754
|
+
# in0 - AuthenticatedToken
|
755
|
+
# in1 - SOAP::SOAPString
|
756
|
+
# in2 - SOAP::SOAPString
|
757
|
+
class AuthenticatePrincipalSimple
|
758
|
+
attr_accessor :in0
|
759
|
+
attr_accessor :in1
|
760
|
+
attr_accessor :in2
|
761
|
+
|
762
|
+
def initialize(in0 = nil, in1 = nil, in2 = nil)
|
763
|
+
@in0 = in0
|
764
|
+
@in1 = in1
|
765
|
+
@in2 = in2
|
766
|
+
end
|
767
|
+
end
|
768
|
+
|
769
|
+
# {urn:SecurityServer}authenticatePrincipalSimpleResponse
|
770
|
+
# out - SOAP::SOAPString
|
771
|
+
class AuthenticatePrincipalSimpleResponse
|
772
|
+
attr_accessor :out
|
773
|
+
|
774
|
+
def initialize(out = nil)
|
775
|
+
@out = out
|
776
|
+
end
|
777
|
+
end
|
778
|
+
|
779
|
+
# {urn:SecurityServer}removeRole
|
780
|
+
# in0 - AuthenticatedToken
|
781
|
+
# in1 - SOAP::SOAPString
|
782
|
+
class RemoveRole
|
783
|
+
attr_accessor :in0
|
784
|
+
attr_accessor :in1
|
785
|
+
|
786
|
+
def initialize(in0 = nil, in1 = nil)
|
787
|
+
@in0 = in0
|
788
|
+
@in1 = in1
|
789
|
+
end
|
790
|
+
end
|
791
|
+
|
792
|
+
# {urn:SecurityServer}removeRoleResponse
|
793
|
+
class RemoveRoleResponse
|
794
|
+
def initialize
|
795
|
+
end
|
796
|
+
end
|
797
|
+
|
798
|
+
# {urn:SecurityServer}getCookieInfo
|
799
|
+
# in0 - AuthenticatedToken
|
800
|
+
class GetCookieInfo
|
801
|
+
attr_accessor :in0
|
802
|
+
|
803
|
+
def initialize(in0 = nil)
|
804
|
+
@in0 = in0
|
805
|
+
end
|
806
|
+
end
|
807
|
+
|
808
|
+
# {urn:SecurityServer}getCookieInfoResponse
|
809
|
+
# out - SOAPCookieInfo
|
810
|
+
class GetCookieInfoResponse
|
811
|
+
attr_accessor :out
|
812
|
+
|
813
|
+
def initialize(out = nil)
|
814
|
+
@out = out
|
815
|
+
end
|
816
|
+
end
|
817
|
+
|
818
|
+
# {urn:SecurityServer}updatePrincipalAttribute
|
819
|
+
# in0 - AuthenticatedToken
|
820
|
+
# in1 - SOAP::SOAPString
|
821
|
+
# in2 - SOAPAttribute
|
822
|
+
class UpdatePrincipalAttribute
|
823
|
+
attr_accessor :in0
|
824
|
+
attr_accessor :in1
|
825
|
+
attr_accessor :in2
|
826
|
+
|
827
|
+
def initialize(in0 = nil, in1 = nil, in2 = nil)
|
828
|
+
@in0 = in0
|
829
|
+
@in1 = in1
|
830
|
+
@in2 = in2
|
831
|
+
end
|
832
|
+
end
|
833
|
+
|
834
|
+
# {urn:SecurityServer}updatePrincipalAttributeResponse
|
835
|
+
class UpdatePrincipalAttributeResponse
|
836
|
+
def initialize
|
837
|
+
end
|
838
|
+
end
|
839
|
+
|
840
|
+
# {urn:SecurityServer}searchGroups
|
841
|
+
# in0 - AuthenticatedToken
|
842
|
+
# in1 - ArrayOfSearchRestriction
|
843
|
+
class SearchGroups
|
844
|
+
attr_accessor :in0
|
845
|
+
attr_accessor :in1
|
846
|
+
|
847
|
+
def initialize(in0 = nil, in1 = nil)
|
848
|
+
@in0 = in0
|
849
|
+
@in1 = in1
|
850
|
+
end
|
851
|
+
end
|
852
|
+
|
853
|
+
# {urn:SecurityServer}searchGroupsResponse
|
854
|
+
# out - ArrayOfSOAPGroup
|
855
|
+
class SearchGroupsResponse
|
856
|
+
attr_accessor :out
|
857
|
+
|
858
|
+
def initialize(out = nil)
|
859
|
+
@out = out
|
860
|
+
end
|
861
|
+
end
|
862
|
+
|
863
|
+
# {urn:SecurityServer}getCacheTime
|
864
|
+
# in0 - AuthenticatedToken
|
865
|
+
class GetCacheTime
|
866
|
+
attr_accessor :in0
|
867
|
+
|
868
|
+
def initialize(in0 = nil)
|
869
|
+
@in0 = in0
|
870
|
+
end
|
871
|
+
end
|
872
|
+
|
873
|
+
# {urn:SecurityServer}getCacheTimeResponse
|
874
|
+
# out - SOAP::SOAPLong
|
875
|
+
class GetCacheTimeResponse
|
876
|
+
attr_accessor :out
|
877
|
+
|
878
|
+
def initialize(out = nil)
|
879
|
+
@out = out
|
880
|
+
end
|
881
|
+
end
|
882
|
+
|
883
|
+
# {urn:SecurityServer}isRoleMember
|
884
|
+
# in0 - AuthenticatedToken
|
885
|
+
# in1 - SOAP::SOAPString
|
886
|
+
# in2 - SOAP::SOAPString
|
887
|
+
class IsRoleMember
|
888
|
+
attr_accessor :in0
|
889
|
+
attr_accessor :in1
|
890
|
+
attr_accessor :in2
|
891
|
+
|
892
|
+
def initialize(in0 = nil, in1 = nil, in2 = nil)
|
893
|
+
@in0 = in0
|
894
|
+
@in1 = in1
|
895
|
+
@in2 = in2
|
896
|
+
end
|
897
|
+
end
|
898
|
+
|
899
|
+
# {urn:SecurityServer}isRoleMemberResponse
|
900
|
+
# out - SOAP::SOAPBoolean
|
901
|
+
class IsRoleMemberResponse
|
902
|
+
attr_accessor :out
|
903
|
+
|
904
|
+
def initialize(out = nil)
|
905
|
+
@out = out
|
906
|
+
end
|
907
|
+
end
|
908
|
+
|
909
|
+
# {urn:SecurityServer}updateGroup
|
910
|
+
# in0 - AuthenticatedToken
|
911
|
+
# in1 - SOAP::SOAPString
|
912
|
+
# in2 - SOAP::SOAPString
|
913
|
+
# in3 - SOAP::SOAPBoolean
|
914
|
+
class UpdateGroup
|
915
|
+
attr_accessor :in0
|
916
|
+
attr_accessor :in1
|
917
|
+
attr_accessor :in2
|
918
|
+
attr_accessor :in3
|
919
|
+
|
920
|
+
def initialize(in0 = nil, in1 = nil, in2 = nil, in3 = nil)
|
921
|
+
@in0 = in0
|
922
|
+
@in1 = in1
|
923
|
+
@in2 = in2
|
924
|
+
@in3 = in3
|
925
|
+
end
|
926
|
+
end
|
927
|
+
|
928
|
+
# {urn:SecurityServer}updateGroupResponse
|
929
|
+
class UpdateGroupResponse
|
930
|
+
def initialize
|
931
|
+
end
|
932
|
+
end
|
933
|
+
|
934
|
+
# {urn:SecurityServer}addAttributeToGroup
|
935
|
+
# in0 - AuthenticatedToken
|
936
|
+
# in1 - SOAP::SOAPString
|
937
|
+
# in2 - SOAPAttribute
|
938
|
+
class AddAttributeToGroup
|
939
|
+
attr_accessor :in0
|
940
|
+
attr_accessor :in1
|
941
|
+
attr_accessor :in2
|
942
|
+
|
943
|
+
def initialize(in0 = nil, in1 = nil, in2 = nil)
|
944
|
+
@in0 = in0
|
945
|
+
@in1 = in1
|
946
|
+
@in2 = in2
|
947
|
+
end
|
948
|
+
end
|
949
|
+
|
950
|
+
# {urn:SecurityServer}addAttributeToGroupResponse
|
951
|
+
class AddAttributeToGroupResponse
|
952
|
+
def initialize
|
953
|
+
end
|
954
|
+
end
|
955
|
+
|
956
|
+
# {urn:SecurityServer}findAllRoleNames
|
957
|
+
# in0 - AuthenticatedToken
|
958
|
+
class FindAllRoleNames
|
959
|
+
attr_accessor :in0
|
960
|
+
|
961
|
+
def initialize(in0 = nil)
|
962
|
+
@in0 = in0
|
963
|
+
end
|
964
|
+
end
|
965
|
+
|
966
|
+
# {urn:SecurityServer}findAllRoleNamesResponse
|
967
|
+
# out - ArrayOfString
|
968
|
+
class FindAllRoleNamesResponse
|
969
|
+
attr_accessor :out
|
970
|
+
|
971
|
+
def initialize(out = nil)
|
972
|
+
@out = out
|
973
|
+
end
|
974
|
+
end
|
975
|
+
|
976
|
+
# {urn:SecurityServer}findRoleByName
|
977
|
+
# in0 - AuthenticatedToken
|
978
|
+
# in1 - SOAP::SOAPString
|
979
|
+
class FindRoleByName
|
980
|
+
attr_accessor :in0
|
981
|
+
attr_accessor :in1
|
982
|
+
|
983
|
+
def initialize(in0 = nil, in1 = nil)
|
984
|
+
@in0 = in0
|
985
|
+
@in1 = in1
|
986
|
+
end
|
987
|
+
end
|
988
|
+
|
989
|
+
# {urn:SecurityServer}findRoleByNameResponse
|
990
|
+
# out - SOAPRole
|
991
|
+
class FindRoleByNameResponse
|
992
|
+
attr_accessor :out
|
993
|
+
|
994
|
+
def initialize(out = nil)
|
995
|
+
@out = out
|
996
|
+
end
|
997
|
+
end
|
998
|
+
|
999
|
+
# {urn:SecurityServer}isCacheEnabled
|
1000
|
+
# in0 - AuthenticatedToken
|
1001
|
+
class IsCacheEnabled
|
1002
|
+
attr_accessor :in0
|
1003
|
+
|
1004
|
+
def initialize(in0 = nil)
|
1005
|
+
@in0 = in0
|
1006
|
+
end
|
1007
|
+
end
|
1008
|
+
|
1009
|
+
# {urn:SecurityServer}isCacheEnabledResponse
|
1010
|
+
# out - SOAP::SOAPBoolean
|
1011
|
+
class IsCacheEnabledResponse
|
1012
|
+
attr_accessor :out
|
1013
|
+
|
1014
|
+
def initialize(out = nil)
|
1015
|
+
@out = out
|
1016
|
+
end
|
1017
|
+
end
|
1018
|
+
|
1019
|
+
# {urn:SecurityServer}findGroupByName
|
1020
|
+
# in0 - AuthenticatedToken
|
1021
|
+
# in1 - SOAP::SOAPString
|
1022
|
+
class FindGroupByName
|
1023
|
+
attr_accessor :in0
|
1024
|
+
attr_accessor :in1
|
1025
|
+
|
1026
|
+
def initialize(in0 = nil, in1 = nil)
|
1027
|
+
@in0 = in0
|
1028
|
+
@in1 = in1
|
1029
|
+
end
|
1030
|
+
end
|
1031
|
+
|
1032
|
+
# {urn:SecurityServer}findGroupByNameResponse
|
1033
|
+
# out - SOAPGroup
|
1034
|
+
class FindGroupByNameResponse
|
1035
|
+
attr_accessor :out
|
1036
|
+
|
1037
|
+
def initialize(out = nil)
|
1038
|
+
@out = out
|
1039
|
+
end
|
1040
|
+
end
|
1041
|
+
|
1042
|
+
# {urn:SecurityServer}findGroupWithAttributesByName
|
1043
|
+
# in0 - AuthenticatedToken
|
1044
|
+
# in1 - SOAP::SOAPString
|
1045
|
+
class FindGroupWithAttributesByName
|
1046
|
+
attr_accessor :in0
|
1047
|
+
attr_accessor :in1
|
1048
|
+
|
1049
|
+
def initialize(in0 = nil, in1 = nil)
|
1050
|
+
@in0 = in0
|
1051
|
+
@in1 = in1
|
1052
|
+
end
|
1053
|
+
end
|
1054
|
+
|
1055
|
+
# {urn:SecurityServer}findGroupWithAttributesByNameResponse
|
1056
|
+
# out - SOAPGroup
|
1057
|
+
class FindGroupWithAttributesByNameResponse
|
1058
|
+
attr_accessor :out
|
1059
|
+
|
1060
|
+
def initialize(out = nil)
|
1061
|
+
@out = out
|
1062
|
+
end
|
1063
|
+
end
|
1064
|
+
|
1065
|
+
# {urn:SecurityServer}removePrincipalFromRole
|
1066
|
+
# in0 - AuthenticatedToken
|
1067
|
+
# in1 - SOAP::SOAPString
|
1068
|
+
# in2 - SOAP::SOAPString
|
1069
|
+
class RemovePrincipalFromRole
|
1070
|
+
attr_accessor :in0
|
1071
|
+
attr_accessor :in1
|
1072
|
+
attr_accessor :in2
|
1073
|
+
|
1074
|
+
def initialize(in0 = nil, in1 = nil, in2 = nil)
|
1075
|
+
@in0 = in0
|
1076
|
+
@in1 = in1
|
1077
|
+
@in2 = in2
|
1078
|
+
end
|
1079
|
+
end
|
1080
|
+
|
1081
|
+
# {urn:SecurityServer}removePrincipalFromRoleResponse
|
1082
|
+
class RemovePrincipalFromRoleResponse
|
1083
|
+
def initialize
|
1084
|
+
end
|
1085
|
+
end
|
1086
|
+
|
1087
|
+
# {urn:SecurityServer}findPrincipalWithAttributesByName
|
1088
|
+
# in0 - AuthenticatedToken
|
1089
|
+
# in1 - SOAP::SOAPString
|
1090
|
+
class FindPrincipalWithAttributesByName
|
1091
|
+
attr_accessor :in0
|
1092
|
+
attr_accessor :in1
|
1093
|
+
|
1094
|
+
def initialize(in0 = nil, in1 = nil)
|
1095
|
+
@in0 = in0
|
1096
|
+
@in1 = in1
|
1097
|
+
end
|
1098
|
+
end
|
1099
|
+
|
1100
|
+
# {urn:SecurityServer}findPrincipalWithAttributesByNameResponse
|
1101
|
+
# out - SOAPPrincipal
|
1102
|
+
class FindPrincipalWithAttributesByNameResponse
|
1103
|
+
attr_accessor :out
|
1104
|
+
|
1105
|
+
def initialize(out = nil)
|
1106
|
+
@out = out
|
1107
|
+
end
|
1108
|
+
end
|
1109
|
+
|
1110
|
+
# {urn:SecurityServer}authenticatePrincipal
|
1111
|
+
# in0 - AuthenticatedToken
|
1112
|
+
# in1 - UserAuthenticationContext
|
1113
|
+
class AuthenticatePrincipal
|
1114
|
+
attr_accessor :in0
|
1115
|
+
attr_accessor :in1
|
1116
|
+
|
1117
|
+
def initialize(in0 = nil, in1 = nil)
|
1118
|
+
@in0 = in0
|
1119
|
+
@in1 = in1
|
1120
|
+
end
|
1121
|
+
end
|
1122
|
+
|
1123
|
+
# {urn:SecurityServer}authenticatePrincipalResponse
|
1124
|
+
# out - SOAP::SOAPString
|
1125
|
+
class AuthenticatePrincipalResponse
|
1126
|
+
attr_accessor :out
|
1127
|
+
|
1128
|
+
def initialize(out = nil)
|
1129
|
+
@out = out
|
1130
|
+
end
|
1131
|
+
end
|
1132
|
+
|
1133
|
+
# {urn:SecurityServer}findGroupMemberships
|
1134
|
+
# in0 - AuthenticatedToken
|
1135
|
+
# in1 - SOAP::SOAPString
|
1136
|
+
class FindGroupMemberships
|
1137
|
+
attr_accessor :in0
|
1138
|
+
attr_accessor :in1
|
1139
|
+
|
1140
|
+
def initialize(in0 = nil, in1 = nil)
|
1141
|
+
@in0 = in0
|
1142
|
+
@in1 = in1
|
1143
|
+
end
|
1144
|
+
end
|
1145
|
+
|
1146
|
+
# {urn:SecurityServer}findGroupMembershipsResponse
|
1147
|
+
# out - ArrayOfString
|
1148
|
+
class FindGroupMembershipsResponse
|
1149
|
+
attr_accessor :out
|
1150
|
+
|
1151
|
+
def initialize(out = nil)
|
1152
|
+
@out = out
|
1153
|
+
end
|
1154
|
+
end
|
1155
|
+
|
1156
|
+
# {urn:SecurityServer}addPrincipalToGroup
|
1157
|
+
# in0 - AuthenticatedToken
|
1158
|
+
# in1 - SOAP::SOAPString
|
1159
|
+
# in2 - SOAP::SOAPString
|
1160
|
+
class AddPrincipalToGroup
|
1161
|
+
attr_accessor :in0
|
1162
|
+
attr_accessor :in1
|
1163
|
+
attr_accessor :in2
|
1164
|
+
|
1165
|
+
def initialize(in0 = nil, in1 = nil, in2 = nil)
|
1166
|
+
@in0 = in0
|
1167
|
+
@in1 = in1
|
1168
|
+
@in2 = in2
|
1169
|
+
end
|
1170
|
+
end
|
1171
|
+
|
1172
|
+
# {urn:SecurityServer}addPrincipalToGroupResponse
|
1173
|
+
class AddPrincipalToGroupResponse
|
1174
|
+
def initialize
|
1175
|
+
end
|
1176
|
+
end
|
1177
|
+
|
1178
|
+
# {urn:SecurityServer}removeGroup
|
1179
|
+
# in0 - AuthenticatedToken
|
1180
|
+
# in1 - SOAP::SOAPString
|
1181
|
+
class RemoveGroup
|
1182
|
+
attr_accessor :in0
|
1183
|
+
attr_accessor :in1
|
1184
|
+
|
1185
|
+
def initialize(in0 = nil, in1 = nil)
|
1186
|
+
@in0 = in0
|
1187
|
+
@in1 = in1
|
1188
|
+
end
|
1189
|
+
end
|
1190
|
+
|
1191
|
+
# {urn:SecurityServer}removeGroupResponse
|
1192
|
+
class RemoveGroupResponse
|
1193
|
+
def initialize
|
1194
|
+
end
|
1195
|
+
end
|
1196
|
+
|
1197
|
+
# {urn:SecurityServer}removeAttributeFromGroup
|
1198
|
+
# in0 - AuthenticatedToken
|
1199
|
+
# in1 - SOAP::SOAPString
|
1200
|
+
# in2 - SOAP::SOAPString
|
1201
|
+
class RemoveAttributeFromGroup
|
1202
|
+
attr_accessor :in0
|
1203
|
+
attr_accessor :in1
|
1204
|
+
attr_accessor :in2
|
1205
|
+
|
1206
|
+
def initialize(in0 = nil, in1 = nil, in2 = nil)
|
1207
|
+
@in0 = in0
|
1208
|
+
@in1 = in1
|
1209
|
+
@in2 = in2
|
1210
|
+
end
|
1211
|
+
end
|
1212
|
+
|
1213
|
+
# {urn:SecurityServer}removeAttributeFromGroupResponse
|
1214
|
+
class RemoveAttributeFromGroupResponse
|
1215
|
+
def initialize
|
1216
|
+
end
|
1217
|
+
end
|
1218
|
+
|
1219
|
+
# {urn:SecurityServer}addAllPrincipals
|
1220
|
+
# in0 - AuthenticatedToken
|
1221
|
+
# in1 - ArrayOfSOAPPrincipalWithCredential
|
1222
|
+
class AddAllPrincipals
|
1223
|
+
attr_accessor :in0
|
1224
|
+
attr_accessor :in1
|
1225
|
+
|
1226
|
+
def initialize(in0 = nil, in1 = nil)
|
1227
|
+
@in0 = in0
|
1228
|
+
@in1 = in1
|
1229
|
+
end
|
1230
|
+
end
|
1231
|
+
|
1232
|
+
# {urn:SecurityServer}addAllPrincipalsResponse
|
1233
|
+
class AddAllPrincipalsResponse
|
1234
|
+
def initialize
|
1235
|
+
end
|
1236
|
+
end
|
1237
|
+
|
1238
|
+
# {urn:SecurityServer}removeAttributeFromPrincipal
|
1239
|
+
# in0 - AuthenticatedToken
|
1240
|
+
# in1 - SOAP::SOAPString
|
1241
|
+
# in2 - SOAP::SOAPString
|
1242
|
+
class RemoveAttributeFromPrincipal
|
1243
|
+
attr_accessor :in0
|
1244
|
+
attr_accessor :in1
|
1245
|
+
attr_accessor :in2
|
1246
|
+
|
1247
|
+
def initialize(in0 = nil, in1 = nil, in2 = nil)
|
1248
|
+
@in0 = in0
|
1249
|
+
@in1 = in1
|
1250
|
+
@in2 = in2
|
1251
|
+
end
|
1252
|
+
end
|
1253
|
+
|
1254
|
+
# {urn:SecurityServer}removeAttributeFromPrincipalResponse
|
1255
|
+
class RemoveAttributeFromPrincipalResponse
|
1256
|
+
def initialize
|
1257
|
+
end
|
1258
|
+
end
|
1259
|
+
|
1260
|
+
# {urn:SecurityServer}addRole
|
1261
|
+
# in0 - AuthenticatedToken
|
1262
|
+
# in1 - SOAPRole
|
1263
|
+
class AddRole
|
1264
|
+
attr_accessor :in0
|
1265
|
+
attr_accessor :in1
|
1266
|
+
|
1267
|
+
def initialize(in0 = nil, in1 = nil)
|
1268
|
+
@in0 = in0
|
1269
|
+
@in1 = in1
|
1270
|
+
end
|
1271
|
+
end
|
1272
|
+
|
1273
|
+
# {urn:SecurityServer}addRoleResponse
|
1274
|
+
# out - SOAPRole
|
1275
|
+
class AddRoleResponse
|
1276
|
+
attr_accessor :out
|
1277
|
+
|
1278
|
+
def initialize(out = nil)
|
1279
|
+
@out = out
|
1280
|
+
end
|
1281
|
+
end
|
1282
|
+
|
1283
|
+
# {urn:SecurityServer}findAllPrincipalNames
|
1284
|
+
# in0 - AuthenticatedToken
|
1285
|
+
class FindAllPrincipalNames
|
1286
|
+
attr_accessor :in0
|
1287
|
+
|
1288
|
+
def initialize(in0 = nil)
|
1289
|
+
@in0 = in0
|
1290
|
+
end
|
1291
|
+
end
|
1292
|
+
|
1293
|
+
# {urn:SecurityServer}findAllPrincipalNamesResponse
|
1294
|
+
# out - ArrayOfString
|
1295
|
+
class FindAllPrincipalNamesResponse
|
1296
|
+
attr_accessor :out
|
1297
|
+
|
1298
|
+
def initialize(out = nil)
|
1299
|
+
@out = out
|
1300
|
+
end
|
1301
|
+
end
|
1302
|
+
|
1303
|
+
# {urn:SecurityServer}createPrincipalToken
|
1304
|
+
# in0 - AuthenticatedToken
|
1305
|
+
# in1 - SOAP::SOAPString
|
1306
|
+
# in2 - ArrayOfValidationFactor
|
1307
|
+
class CreatePrincipalToken
|
1308
|
+
attr_accessor :in0
|
1309
|
+
attr_accessor :in1
|
1310
|
+
attr_accessor :in2
|
1311
|
+
|
1312
|
+
def initialize(in0 = nil, in1 = nil, in2 = nil)
|
1313
|
+
@in0 = in0
|
1314
|
+
@in1 = in1
|
1315
|
+
@in2 = in2
|
1316
|
+
end
|
1317
|
+
end
|
1318
|
+
|
1319
|
+
# {urn:SecurityServer}createPrincipalTokenResponse
|
1320
|
+
# out - SOAP::SOAPString
|
1321
|
+
class CreatePrincipalTokenResponse
|
1322
|
+
attr_accessor :out
|
1323
|
+
|
1324
|
+
def initialize(out = nil)
|
1325
|
+
@out = out
|
1326
|
+
end
|
1327
|
+
end
|
1328
|
+
|
1329
|
+
# {urn:SecurityServer}searchRoles
|
1330
|
+
# in0 - AuthenticatedToken
|
1331
|
+
# in1 - ArrayOfSearchRestriction
|
1332
|
+
class SearchRoles
|
1333
|
+
attr_accessor :in0
|
1334
|
+
attr_accessor :in1
|
1335
|
+
|
1336
|
+
def initialize(in0 = nil, in1 = nil)
|
1337
|
+
@in0 = in0
|
1338
|
+
@in1 = in1
|
1339
|
+
end
|
1340
|
+
end
|
1341
|
+
|
1342
|
+
# {urn:SecurityServer}searchRolesResponse
|
1343
|
+
# out - ArrayOfSOAPRole
|
1344
|
+
class SearchRolesResponse
|
1345
|
+
attr_accessor :out
|
1346
|
+
|
1347
|
+
def initialize(out = nil)
|
1348
|
+
@out = out
|
1349
|
+
end
|
1350
|
+
end
|
1351
|
+
|
1352
|
+
# {urn:SecurityServer}removePrincipalFromGroup
|
1353
|
+
# in0 - AuthenticatedToken
|
1354
|
+
# in1 - SOAP::SOAPString
|
1355
|
+
# in2 - SOAP::SOAPString
|
1356
|
+
class RemovePrincipalFromGroup
|
1357
|
+
attr_accessor :in0
|
1358
|
+
attr_accessor :in1
|
1359
|
+
attr_accessor :in2
|
1360
|
+
|
1361
|
+
def initialize(in0 = nil, in1 = nil, in2 = nil)
|
1362
|
+
@in0 = in0
|
1363
|
+
@in1 = in1
|
1364
|
+
@in2 = in2
|
1365
|
+
end
|
1366
|
+
end
|
1367
|
+
|
1368
|
+
# {urn:SecurityServer}removePrincipalFromGroupResponse
|
1369
|
+
class RemovePrincipalFromGroupResponse
|
1370
|
+
def initialize
|
1371
|
+
end
|
1372
|
+
end
|
1373
|
+
|
1374
|
+
# {urn:SecurityServer}findPrincipalByName
|
1375
|
+
# in0 - AuthenticatedToken
|
1376
|
+
# in1 - SOAP::SOAPString
|
1377
|
+
class FindPrincipalByName
|
1378
|
+
attr_accessor :in0
|
1379
|
+
attr_accessor :in1
|
1380
|
+
|
1381
|
+
def initialize(in0 = nil, in1 = nil)
|
1382
|
+
@in0 = in0
|
1383
|
+
@in1 = in1
|
1384
|
+
end
|
1385
|
+
end
|
1386
|
+
|
1387
|
+
# {urn:SecurityServer}findPrincipalByNameResponse
|
1388
|
+
# out - SOAPPrincipal
|
1389
|
+
class FindPrincipalByNameResponse
|
1390
|
+
attr_accessor :out
|
1391
|
+
|
1392
|
+
def initialize(out = nil)
|
1393
|
+
@out = out
|
1394
|
+
end
|
1395
|
+
end
|
1396
|
+
|
1397
|
+
# {urn:SecurityServer}resetPrincipalCredential
|
1398
|
+
# in0 - AuthenticatedToken
|
1399
|
+
# in1 - SOAP::SOAPString
|
1400
|
+
class ResetPrincipalCredential
|
1401
|
+
attr_accessor :in0
|
1402
|
+
attr_accessor :in1
|
1403
|
+
|
1404
|
+
def initialize(in0 = nil, in1 = nil)
|
1405
|
+
@in0 = in0
|
1406
|
+
@in1 = in1
|
1407
|
+
end
|
1408
|
+
end
|
1409
|
+
|
1410
|
+
# {urn:SecurityServer}resetPrincipalCredentialResponse
|
1411
|
+
class ResetPrincipalCredentialResponse
|
1412
|
+
def initialize
|
1413
|
+
end
|
1414
|
+
end
|
1415
|
+
|
1416
|
+
# {urn:SecurityServer}updateGroupAttribute
|
1417
|
+
# in0 - AuthenticatedToken
|
1418
|
+
# in1 - SOAP::SOAPString
|
1419
|
+
# in2 - SOAPAttribute
|
1420
|
+
class UpdateGroupAttribute
|
1421
|
+
attr_accessor :in0
|
1422
|
+
attr_accessor :in1
|
1423
|
+
attr_accessor :in2
|
1424
|
+
|
1425
|
+
def initialize(in0 = nil, in1 = nil, in2 = nil)
|
1426
|
+
@in0 = in0
|
1427
|
+
@in1 = in1
|
1428
|
+
@in2 = in2
|
1429
|
+
end
|
1430
|
+
end
|
1431
|
+
|
1432
|
+
# {urn:SecurityServer}updateGroupAttributeResponse
|
1433
|
+
class UpdateGroupAttributeResponse
|
1434
|
+
def initialize
|
1435
|
+
end
|
1436
|
+
end
|
1437
|
+
|
1438
|
+
# {urn:SecurityServer}isGroupMember
|
1439
|
+
# in0 - AuthenticatedToken
|
1440
|
+
# in1 - SOAP::SOAPString
|
1441
|
+
# in2 - SOAP::SOAPString
|
1442
|
+
class IsGroupMember
|
1443
|
+
attr_accessor :in0
|
1444
|
+
attr_accessor :in1
|
1445
|
+
attr_accessor :in2
|
1446
|
+
|
1447
|
+
def initialize(in0 = nil, in1 = nil, in2 = nil)
|
1448
|
+
@in0 = in0
|
1449
|
+
@in1 = in1
|
1450
|
+
@in2 = in2
|
1451
|
+
end
|
1452
|
+
end
|
1453
|
+
|
1454
|
+
# {urn:SecurityServer}isGroupMemberResponse
|
1455
|
+
# out - SOAP::SOAPBoolean
|
1456
|
+
class IsGroupMemberResponse
|
1457
|
+
attr_accessor :out
|
1458
|
+
|
1459
|
+
def initialize(out = nil)
|
1460
|
+
@out = out
|
1461
|
+
end
|
1462
|
+
end
|
1463
|
+
|
1464
|
+
# {urn:SecurityServer}searchPrincipals
|
1465
|
+
# in0 - AuthenticatedToken
|
1466
|
+
# in1 - ArrayOfSearchRestriction
|
1467
|
+
class SearchPrincipals
|
1468
|
+
attr_accessor :in0
|
1469
|
+
attr_accessor :in1
|
1470
|
+
|
1471
|
+
def initialize(in0 = nil, in1 = nil)
|
1472
|
+
@in0 = in0
|
1473
|
+
@in1 = in1
|
1474
|
+
end
|
1475
|
+
end
|
1476
|
+
|
1477
|
+
# {urn:SecurityServer}searchPrincipalsResponse
|
1478
|
+
# out - ArrayOfSOAPPrincipal
|
1479
|
+
class SearchPrincipalsResponse
|
1480
|
+
attr_accessor :out
|
1481
|
+
|
1482
|
+
def initialize(out = nil)
|
1483
|
+
@out = out
|
1484
|
+
end
|
1485
|
+
end
|
1486
|
+
|
1487
|
+
# {urn:SecurityServer}getDomain
|
1488
|
+
# in0 - AuthenticatedToken
|
1489
|
+
class GetDomain
|
1490
|
+
attr_accessor :in0
|
1491
|
+
|
1492
|
+
def initialize(in0 = nil)
|
1493
|
+
@in0 = in0
|
1494
|
+
end
|
1495
|
+
end
|
1496
|
+
|
1497
|
+
# {urn:SecurityServer}getDomainResponse
|
1498
|
+
# out - SOAP::SOAPString
|
1499
|
+
class GetDomainResponse
|
1500
|
+
attr_accessor :out
|
1501
|
+
|
1502
|
+
def initialize(out = nil)
|
1503
|
+
@out = out
|
1504
|
+
end
|
1505
|
+
end
|
1506
|
+
|
1507
|
+
# {urn:SecurityServer}authenticateApplication
|
1508
|
+
# in0 - ApplicationAuthenticationContext
|
1509
|
+
class AuthenticateApplication
|
1510
|
+
attr_accessor :in0
|
1511
|
+
|
1512
|
+
def initialize(in0 = nil)
|
1513
|
+
@in0 = in0
|
1514
|
+
end
|
1515
|
+
end
|
1516
|
+
|
1517
|
+
# {urn:SecurityServer}authenticateApplicationResponse
|
1518
|
+
# out - AuthenticatedToken
|
1519
|
+
class AuthenticateApplicationResponse
|
1520
|
+
attr_accessor :out
|
1521
|
+
|
1522
|
+
def initialize(out = nil)
|
1523
|
+
@out = out
|
1524
|
+
end
|
1525
|
+
end
|