crowd 0.5.0
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/History.txt +22 -0
- data/Manifest.txt +12 -0
- data/README.txt +68 -0
- data/Rakefile +20 -0
- data/lib/SecurityServerClient.rb +626 -0
- data/lib/crowd-1.1.0.wsdl +2203 -0
- data/lib/crowd.rb +508 -0
- data/lib/crowd/version.rb +9 -0
- data/lib/default.rb +1047 -0
- data/lib/defaultDriver.rb +328 -0
- data/lib/defaultMappingRegistry.rb +1553 -0
- data/test/test_crowd.rb +159 -0
- metadata +77 -0
data/lib/default.rb
ADDED
@@ -0,0 +1,1047 @@
|
|
1
|
+
require 'xsd/qname'
|
2
|
+
|
3
|
+
# {http://authentication.integration.crowd.atlassian.com}AuthenticatedToken
|
4
|
+
class AuthenticatedToken
|
5
|
+
attr_accessor :name
|
6
|
+
attr_accessor :token
|
7
|
+
|
8
|
+
def initialize(name = nil, token = nil)
|
9
|
+
@name = name
|
10
|
+
@token = token
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
# {http://authentication.integration.crowd.atlassian.com}ApplicationAuthenticationContext
|
15
|
+
class ApplicationAuthenticationContext
|
16
|
+
attr_accessor :credential
|
17
|
+
attr_accessor :name
|
18
|
+
attr_accessor :validationFactors
|
19
|
+
|
20
|
+
def initialize(credential = nil, name = nil, validationFactors = nil)
|
21
|
+
@credential = credential
|
22
|
+
@name = name
|
23
|
+
@validationFactors = validationFactors
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
# {http://authentication.integration.crowd.atlassian.com}PasswordCredential
|
28
|
+
class PasswordCredential
|
29
|
+
attr_accessor :credential
|
30
|
+
attr_accessor :encryptedCrednetial
|
31
|
+
|
32
|
+
def initialize(credential = nil, encryptedCrednetial = nil)
|
33
|
+
@credential = credential
|
34
|
+
@encryptedCrednetial = encryptedCrednetial
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
# {http://authentication.integration.crowd.atlassian.com}ArrayOfValidationFactor
|
39
|
+
class ArrayOfValidationFactor < ::Array
|
40
|
+
end
|
41
|
+
|
42
|
+
# {http://authentication.integration.crowd.atlassian.com}ValidationFactor
|
43
|
+
class ValidationFactor
|
44
|
+
attr_accessor :name
|
45
|
+
attr_accessor :value
|
46
|
+
|
47
|
+
def initialize(name = nil, value = nil)
|
48
|
+
@name = name
|
49
|
+
@value = value
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
# {http://authentication.integration.crowd.atlassian.com}PrincipalAuthenticationContext
|
54
|
+
class PrincipalAuthenticationContext
|
55
|
+
attr_accessor :application
|
56
|
+
attr_accessor :credential
|
57
|
+
attr_accessor :name
|
58
|
+
attr_accessor :validationFactors
|
59
|
+
|
60
|
+
def initialize(application = nil, credential = nil, name = nil, validationFactors = nil)
|
61
|
+
@application = application
|
62
|
+
@credential = credential
|
63
|
+
@name = name
|
64
|
+
@validationFactors = validationFactors
|
65
|
+
end
|
66
|
+
end
|
67
|
+
|
68
|
+
# {urn:SecurityServer}ArrayOfString
|
69
|
+
class ArrayOfString < ::Array
|
70
|
+
end
|
71
|
+
|
72
|
+
# {http://soap.integration.crowd.atlassian.com}SOAPPrincipal
|
73
|
+
class SOAPPrincipal
|
74
|
+
attr_accessor :iD
|
75
|
+
attr_accessor :active
|
76
|
+
attr_accessor :attributes
|
77
|
+
attr_accessor :conception
|
78
|
+
attr_accessor :description
|
79
|
+
attr_accessor :directoryID
|
80
|
+
attr_accessor :lastModified
|
81
|
+
attr_accessor :name
|
82
|
+
|
83
|
+
def initialize(iD = nil, active = nil, attributes = nil, conception = nil, description = nil, directoryID = nil, lastModified = nil, name = nil)
|
84
|
+
@iD = iD
|
85
|
+
@active = active
|
86
|
+
@attributes = attributes
|
87
|
+
@conception = conception
|
88
|
+
@description = description
|
89
|
+
@directoryID = directoryID
|
90
|
+
@lastModified = lastModified
|
91
|
+
@name = name
|
92
|
+
end
|
93
|
+
end
|
94
|
+
|
95
|
+
# {http://soap.integration.crowd.atlassian.com}ArrayOfSOAPAttribute
|
96
|
+
class ArrayOfSOAPAttribute < ::Array
|
97
|
+
end
|
98
|
+
|
99
|
+
# {http://soap.integration.crowd.atlassian.com}SOAPAttribute
|
100
|
+
class SOAPAttribute
|
101
|
+
attr_accessor :name
|
102
|
+
attr_accessor :values
|
103
|
+
|
104
|
+
def initialize(name = nil, values = nil)
|
105
|
+
@name = name
|
106
|
+
@values = values
|
107
|
+
end
|
108
|
+
end
|
109
|
+
|
110
|
+
# {http://soap.integration.crowd.atlassian.com}SOAPRole
|
111
|
+
class SOAPRole
|
112
|
+
attr_accessor :iD
|
113
|
+
attr_accessor :active
|
114
|
+
attr_accessor :attributes
|
115
|
+
attr_accessor :conception
|
116
|
+
attr_accessor :description
|
117
|
+
attr_accessor :directoryID
|
118
|
+
attr_accessor :lastModified
|
119
|
+
attr_accessor :members
|
120
|
+
attr_accessor :name
|
121
|
+
|
122
|
+
def initialize(iD = nil, active = nil, attributes = nil, conception = nil, description = nil, directoryID = nil, lastModified = nil, members = nil, name = nil)
|
123
|
+
@iD = iD
|
124
|
+
@active = active
|
125
|
+
@attributes = attributes
|
126
|
+
@conception = conception
|
127
|
+
@description = description
|
128
|
+
@directoryID = directoryID
|
129
|
+
@lastModified = lastModified
|
130
|
+
@members = members
|
131
|
+
@name = name
|
132
|
+
end
|
133
|
+
end
|
134
|
+
|
135
|
+
# {http://soap.integration.crowd.atlassian.com}ArrayOfSearchRestriction
|
136
|
+
class ArrayOfSearchRestriction < ::Array
|
137
|
+
end
|
138
|
+
|
139
|
+
# {http://soap.integration.crowd.atlassian.com}SearchRestriction
|
140
|
+
class SearchRestriction
|
141
|
+
attr_accessor :name
|
142
|
+
attr_accessor :value
|
143
|
+
|
144
|
+
def initialize(name = nil, value = nil)
|
145
|
+
@name = name
|
146
|
+
@value = value
|
147
|
+
end
|
148
|
+
end
|
149
|
+
|
150
|
+
# {http://soap.integration.crowd.atlassian.com}ArrayOfSOAPGroup
|
151
|
+
class ArrayOfSOAPGroup < ::Array
|
152
|
+
end
|
153
|
+
|
154
|
+
# {http://soap.integration.crowd.atlassian.com}SOAPGroup
|
155
|
+
class SOAPGroup
|
156
|
+
attr_accessor :iD
|
157
|
+
attr_accessor :active
|
158
|
+
attr_accessor :attributes
|
159
|
+
attr_accessor :conception
|
160
|
+
attr_accessor :description
|
161
|
+
attr_accessor :directoryID
|
162
|
+
attr_accessor :lastModified
|
163
|
+
attr_accessor :members
|
164
|
+
attr_accessor :name
|
165
|
+
|
166
|
+
def initialize(iD = nil, active = nil, attributes = nil, conception = nil, description = nil, directoryID = nil, lastModified = nil, members = nil, name = nil)
|
167
|
+
@iD = iD
|
168
|
+
@active = active
|
169
|
+
@attributes = attributes
|
170
|
+
@conception = conception
|
171
|
+
@description = description
|
172
|
+
@directoryID = directoryID
|
173
|
+
@lastModified = lastModified
|
174
|
+
@members = members
|
175
|
+
@name = name
|
176
|
+
end
|
177
|
+
end
|
178
|
+
|
179
|
+
# {http://soap.integration.crowd.atlassian.com}ArrayOfSOAPPrincipal
|
180
|
+
class ArrayOfSOAPPrincipal < ::Array
|
181
|
+
end
|
182
|
+
|
183
|
+
# {http://soap.integration.crowd.atlassian.com}ArrayOfSOAPRole
|
184
|
+
class ArrayOfSOAPRole < ::Array
|
185
|
+
end
|
186
|
+
|
187
|
+
# {http://exception.integration.crowd.atlassian.com}InvalidAuthorizationTokenException
|
188
|
+
class InvalidAuthorizationTokenException
|
189
|
+
attr_accessor :cause
|
190
|
+
attr_accessor :messages
|
191
|
+
attr_accessor :throwableCount
|
192
|
+
attr_accessor :throwables
|
193
|
+
|
194
|
+
def initialize(cause = nil, messages = nil, throwableCount = nil, throwables = nil)
|
195
|
+
@cause = cause
|
196
|
+
@messages = messages
|
197
|
+
@throwableCount = throwableCount
|
198
|
+
@throwables = throwables
|
199
|
+
end
|
200
|
+
end
|
201
|
+
|
202
|
+
# {http://exception.integration.crowd.atlassian.com}ObjectNotFoundException
|
203
|
+
class ObjectNotFoundException
|
204
|
+
attr_accessor :cause
|
205
|
+
attr_accessor :messages
|
206
|
+
attr_accessor :throwableCount
|
207
|
+
attr_accessor :throwables
|
208
|
+
|
209
|
+
def initialize(cause = nil, messages = nil, throwableCount = nil, throwables = nil)
|
210
|
+
@cause = cause
|
211
|
+
@messages = messages
|
212
|
+
@throwableCount = throwableCount
|
213
|
+
@throwables = throwables
|
214
|
+
end
|
215
|
+
end
|
216
|
+
|
217
|
+
# {http://exception.integration.crowd.atlassian.com}InvalidAuthenticationException
|
218
|
+
class InvalidAuthenticationException
|
219
|
+
attr_accessor :cause
|
220
|
+
attr_accessor :messages
|
221
|
+
attr_accessor :throwableCount
|
222
|
+
attr_accessor :throwables
|
223
|
+
|
224
|
+
def initialize(cause = nil, messages = nil, throwableCount = nil, throwables = nil)
|
225
|
+
@cause = cause
|
226
|
+
@messages = messages
|
227
|
+
@throwableCount = throwableCount
|
228
|
+
@throwables = throwables
|
229
|
+
end
|
230
|
+
end
|
231
|
+
|
232
|
+
# {http://exception.integration.crowd.atlassian.com}DirectoryPermissionException
|
233
|
+
class DirectoryPermissionException
|
234
|
+
attr_accessor :cause
|
235
|
+
attr_accessor :messages
|
236
|
+
attr_accessor :throwableCount
|
237
|
+
attr_accessor :throwables
|
238
|
+
|
239
|
+
def initialize(cause = nil, messages = nil, throwableCount = nil, throwables = nil)
|
240
|
+
@cause = cause
|
241
|
+
@messages = messages
|
242
|
+
@throwableCount = throwableCount
|
243
|
+
@throwables = throwables
|
244
|
+
end
|
245
|
+
end
|
246
|
+
|
247
|
+
# {http://exception.integration.crowd.atlassian.com}InvalidRoleException
|
248
|
+
class InvalidRoleException
|
249
|
+
attr_accessor :cause
|
250
|
+
attr_accessor :messages
|
251
|
+
attr_accessor :throwableCount
|
252
|
+
attr_accessor :throwables
|
253
|
+
|
254
|
+
def initialize(cause = nil, messages = nil, throwableCount = nil, throwables = nil)
|
255
|
+
@cause = cause
|
256
|
+
@messages = messages
|
257
|
+
@throwableCount = throwableCount
|
258
|
+
@throwables = throwables
|
259
|
+
end
|
260
|
+
end
|
261
|
+
|
262
|
+
# {http://exception.integration.crowd.atlassian.com}InvalidTokenException
|
263
|
+
class InvalidTokenException
|
264
|
+
attr_accessor :cause
|
265
|
+
attr_accessor :messages
|
266
|
+
attr_accessor :throwableCount
|
267
|
+
attr_accessor :throwables
|
268
|
+
|
269
|
+
def initialize(cause = nil, messages = nil, throwableCount = nil, throwables = nil)
|
270
|
+
@cause = cause
|
271
|
+
@messages = messages
|
272
|
+
@throwableCount = throwableCount
|
273
|
+
@throwables = throwables
|
274
|
+
end
|
275
|
+
end
|
276
|
+
|
277
|
+
# {http://exception.integration.crowd.atlassian.com}InvalidGroupException
|
278
|
+
class InvalidGroupException
|
279
|
+
attr_accessor :cause
|
280
|
+
attr_accessor :messages
|
281
|
+
attr_accessor :throwableCount
|
282
|
+
attr_accessor :throwables
|
283
|
+
|
284
|
+
def initialize(cause = nil, messages = nil, throwableCount = nil, throwables = nil)
|
285
|
+
@cause = cause
|
286
|
+
@messages = messages
|
287
|
+
@throwableCount = throwableCount
|
288
|
+
@throwables = throwables
|
289
|
+
end
|
290
|
+
end
|
291
|
+
|
292
|
+
# {http://exception.integration.crowd.atlassian.com}InvalidCredentialException
|
293
|
+
class InvalidCredentialException
|
294
|
+
attr_accessor :cause
|
295
|
+
attr_accessor :messages
|
296
|
+
attr_accessor :throwableCount
|
297
|
+
attr_accessor :throwables
|
298
|
+
|
299
|
+
def initialize(cause = nil, messages = nil, throwableCount = nil, throwables = nil)
|
300
|
+
@cause = cause
|
301
|
+
@messages = messages
|
302
|
+
@throwableCount = throwableCount
|
303
|
+
@throwables = throwables
|
304
|
+
end
|
305
|
+
end
|
306
|
+
|
307
|
+
# {http://exception.integration.crowd.atlassian.com}InvalidPrincipalException
|
308
|
+
class InvalidPrincipalException
|
309
|
+
attr_accessor :cause
|
310
|
+
attr_accessor :messages
|
311
|
+
attr_accessor :throwableCount
|
312
|
+
attr_accessor :throwables
|
313
|
+
|
314
|
+
def initialize(cause = nil, messages = nil, throwableCount = nil, throwables = nil)
|
315
|
+
@cause = cause
|
316
|
+
@messages = messages
|
317
|
+
@throwableCount = throwableCount
|
318
|
+
@throwables = throwables
|
319
|
+
end
|
320
|
+
end
|
321
|
+
|
322
|
+
# {http://exception.integration.crowd.atlassian.com}InactiveAccountException
|
323
|
+
class InactiveAccountException
|
324
|
+
attr_accessor :cause
|
325
|
+
attr_accessor :messages
|
326
|
+
attr_accessor :throwableCount
|
327
|
+
attr_accessor :throwables
|
328
|
+
|
329
|
+
def initialize(cause = nil, messages = nil, throwableCount = nil, throwables = nil)
|
330
|
+
@cause = cause
|
331
|
+
@messages = messages
|
332
|
+
@throwableCount = throwableCount
|
333
|
+
@throwables = throwables
|
334
|
+
end
|
335
|
+
end
|
336
|
+
|
337
|
+
# {http://lang.java}Throwable
|
338
|
+
class Throwable
|
339
|
+
def initialize
|
340
|
+
end
|
341
|
+
end
|
342
|
+
|
343
|
+
# {http://lang.java}ArrayOfThrowable
|
344
|
+
class ArrayOfThrowable < ::Array
|
345
|
+
end
|
346
|
+
|
347
|
+
# {http://rmi.java}RemoteException
|
348
|
+
class RemoteException
|
349
|
+
attr_accessor :cause
|
350
|
+
attr_accessor :message
|
351
|
+
|
352
|
+
def initialize(cause = nil, message = nil)
|
353
|
+
@cause = cause
|
354
|
+
@message = message
|
355
|
+
end
|
356
|
+
end
|
357
|
+
|
358
|
+
# {urn:SecurityServer}findPrincipalByName
|
359
|
+
class FindPrincipalByName
|
360
|
+
attr_accessor :in0
|
361
|
+
attr_accessor :in1
|
362
|
+
|
363
|
+
def initialize(in0 = nil, in1 = nil)
|
364
|
+
@in0 = in0
|
365
|
+
@in1 = in1
|
366
|
+
end
|
367
|
+
end
|
368
|
+
|
369
|
+
# {urn:SecurityServer}findPrincipalByNameResponse
|
370
|
+
class FindPrincipalByNameResponse
|
371
|
+
attr_accessor :out
|
372
|
+
|
373
|
+
def initialize(out = nil)
|
374
|
+
@out = out
|
375
|
+
end
|
376
|
+
end
|
377
|
+
|
378
|
+
# {urn:SecurityServer}authenticateApplication
|
379
|
+
class AuthenticateApplication
|
380
|
+
attr_accessor :in0
|
381
|
+
|
382
|
+
def initialize(in0 = nil)
|
383
|
+
@in0 = in0
|
384
|
+
end
|
385
|
+
end
|
386
|
+
|
387
|
+
# {urn:SecurityServer}authenticateApplicationResponse
|
388
|
+
class AuthenticateApplicationResponse
|
389
|
+
attr_accessor :out
|
390
|
+
|
391
|
+
def initialize(out = nil)
|
392
|
+
@out = out
|
393
|
+
end
|
394
|
+
end
|
395
|
+
|
396
|
+
# {urn:SecurityServer}addPrincipalToGroup
|
397
|
+
class AddPrincipalToGroup
|
398
|
+
attr_accessor :in0
|
399
|
+
attr_accessor :in1
|
400
|
+
attr_accessor :in2
|
401
|
+
|
402
|
+
def initialize(in0 = nil, in1 = nil, in2 = nil)
|
403
|
+
@in0 = in0
|
404
|
+
@in1 = in1
|
405
|
+
@in2 = in2
|
406
|
+
end
|
407
|
+
end
|
408
|
+
|
409
|
+
# {urn:SecurityServer}addPrincipalToGroupResponse
|
410
|
+
class AddPrincipalToGroupResponse
|
411
|
+
def initialize
|
412
|
+
end
|
413
|
+
end
|
414
|
+
|
415
|
+
# {urn:SecurityServer}findRoleByName
|
416
|
+
class FindRoleByName
|
417
|
+
attr_accessor :in0
|
418
|
+
attr_accessor :in1
|
419
|
+
|
420
|
+
def initialize(in0 = nil, in1 = nil)
|
421
|
+
@in0 = in0
|
422
|
+
@in1 = in1
|
423
|
+
end
|
424
|
+
end
|
425
|
+
|
426
|
+
# {urn:SecurityServer}findRoleByNameResponse
|
427
|
+
class FindRoleByNameResponse
|
428
|
+
attr_accessor :out
|
429
|
+
|
430
|
+
def initialize(out = nil)
|
431
|
+
@out = out
|
432
|
+
end
|
433
|
+
end
|
434
|
+
|
435
|
+
# {urn:SecurityServer}addRole
|
436
|
+
class AddRole
|
437
|
+
attr_accessor :in0
|
438
|
+
attr_accessor :in1
|
439
|
+
|
440
|
+
def initialize(in0 = nil, in1 = nil)
|
441
|
+
@in0 = in0
|
442
|
+
@in1 = in1
|
443
|
+
end
|
444
|
+
end
|
445
|
+
|
446
|
+
# {urn:SecurityServer}addRoleResponse
|
447
|
+
class AddRoleResponse
|
448
|
+
attr_accessor :out
|
449
|
+
|
450
|
+
def initialize(out = nil)
|
451
|
+
@out = out
|
452
|
+
end
|
453
|
+
end
|
454
|
+
|
455
|
+
# {urn:SecurityServer}findPrincipalByToken
|
456
|
+
class FindPrincipalByToken
|
457
|
+
attr_accessor :in0
|
458
|
+
attr_accessor :in1
|
459
|
+
|
460
|
+
def initialize(in0 = nil, in1 = nil)
|
461
|
+
@in0 = in0
|
462
|
+
@in1 = in1
|
463
|
+
end
|
464
|
+
end
|
465
|
+
|
466
|
+
# {urn:SecurityServer}findPrincipalByTokenResponse
|
467
|
+
class FindPrincipalByTokenResponse
|
468
|
+
attr_accessor :out
|
469
|
+
|
470
|
+
def initialize(out = nil)
|
471
|
+
@out = out
|
472
|
+
end
|
473
|
+
end
|
474
|
+
|
475
|
+
# {urn:SecurityServer}isGroupMember
|
476
|
+
class IsGroupMember
|
477
|
+
attr_accessor :in0
|
478
|
+
attr_accessor :in1
|
479
|
+
attr_accessor :in2
|
480
|
+
|
481
|
+
def initialize(in0 = nil, in1 = nil, in2 = nil)
|
482
|
+
@in0 = in0
|
483
|
+
@in1 = in1
|
484
|
+
@in2 = in2
|
485
|
+
end
|
486
|
+
end
|
487
|
+
|
488
|
+
# {urn:SecurityServer}isGroupMemberResponse
|
489
|
+
class IsGroupMemberResponse
|
490
|
+
attr_accessor :out
|
491
|
+
|
492
|
+
def initialize(out = nil)
|
493
|
+
@out = out
|
494
|
+
end
|
495
|
+
end
|
496
|
+
|
497
|
+
# {urn:SecurityServer}searchGroups
|
498
|
+
class SearchGroups
|
499
|
+
attr_accessor :in0
|
500
|
+
attr_accessor :in1
|
501
|
+
|
502
|
+
def initialize(in0 = nil, in1 = nil)
|
503
|
+
@in0 = in0
|
504
|
+
@in1 = in1
|
505
|
+
end
|
506
|
+
end
|
507
|
+
|
508
|
+
# {urn:SecurityServer}searchGroupsResponse
|
509
|
+
class SearchGroupsResponse
|
510
|
+
attr_accessor :out
|
511
|
+
|
512
|
+
def initialize(out = nil)
|
513
|
+
@out = out
|
514
|
+
end
|
515
|
+
end
|
516
|
+
|
517
|
+
# {urn:SecurityServer}getDomain
|
518
|
+
class GetDomain
|
519
|
+
attr_accessor :in0
|
520
|
+
|
521
|
+
def initialize(in0 = nil)
|
522
|
+
@in0 = in0
|
523
|
+
end
|
524
|
+
end
|
525
|
+
|
526
|
+
# {urn:SecurityServer}getDomainResponse
|
527
|
+
class GetDomainResponse
|
528
|
+
attr_accessor :out
|
529
|
+
|
530
|
+
def initialize(out = nil)
|
531
|
+
@out = out
|
532
|
+
end
|
533
|
+
end
|
534
|
+
|
535
|
+
# {urn:SecurityServer}removeAttributeFromPrincipal
|
536
|
+
class RemoveAttributeFromPrincipal
|
537
|
+
attr_accessor :in0
|
538
|
+
attr_accessor :in1
|
539
|
+
attr_accessor :in2
|
540
|
+
|
541
|
+
def initialize(in0 = nil, in1 = nil, in2 = nil)
|
542
|
+
@in0 = in0
|
543
|
+
@in1 = in1
|
544
|
+
@in2 = in2
|
545
|
+
end
|
546
|
+
end
|
547
|
+
|
548
|
+
# {urn:SecurityServer}removeAttributeFromPrincipalResponse
|
549
|
+
class RemoveAttributeFromPrincipalResponse
|
550
|
+
def initialize
|
551
|
+
end
|
552
|
+
end
|
553
|
+
|
554
|
+
# {urn:SecurityServer}isRoleMember
|
555
|
+
class IsRoleMember
|
556
|
+
attr_accessor :in0
|
557
|
+
attr_accessor :in1
|
558
|
+
attr_accessor :in2
|
559
|
+
|
560
|
+
def initialize(in0 = nil, in1 = nil, in2 = nil)
|
561
|
+
@in0 = in0
|
562
|
+
@in1 = in1
|
563
|
+
@in2 = in2
|
564
|
+
end
|
565
|
+
end
|
566
|
+
|
567
|
+
# {urn:SecurityServer}isRoleMemberResponse
|
568
|
+
class IsRoleMemberResponse
|
569
|
+
attr_accessor :out
|
570
|
+
|
571
|
+
def initialize(out = nil)
|
572
|
+
@out = out
|
573
|
+
end
|
574
|
+
end
|
575
|
+
|
576
|
+
# {urn:SecurityServer}removeRole
|
577
|
+
class RemoveRole
|
578
|
+
attr_accessor :in0
|
579
|
+
attr_accessor :in1
|
580
|
+
|
581
|
+
def initialize(in0 = nil, in1 = nil)
|
582
|
+
@in0 = in0
|
583
|
+
@in1 = in1
|
584
|
+
end
|
585
|
+
end
|
586
|
+
|
587
|
+
# {urn:SecurityServer}removeRoleResponse
|
588
|
+
class RemoveRoleResponse
|
589
|
+
def initialize
|
590
|
+
end
|
591
|
+
end
|
592
|
+
|
593
|
+
# {urn:SecurityServer}removePrincipalFromRole
|
594
|
+
class RemovePrincipalFromRole
|
595
|
+
attr_accessor :in0
|
596
|
+
attr_accessor :in1
|
597
|
+
attr_accessor :in2
|
598
|
+
|
599
|
+
def initialize(in0 = nil, in1 = nil, in2 = nil)
|
600
|
+
@in0 = in0
|
601
|
+
@in1 = in1
|
602
|
+
@in2 = in2
|
603
|
+
end
|
604
|
+
end
|
605
|
+
|
606
|
+
# {urn:SecurityServer}removePrincipalFromRoleResponse
|
607
|
+
class RemovePrincipalFromRoleResponse
|
608
|
+
def initialize
|
609
|
+
end
|
610
|
+
end
|
611
|
+
|
612
|
+
# {urn:SecurityServer}addGroup
|
613
|
+
class AddGroup
|
614
|
+
attr_accessor :in0
|
615
|
+
attr_accessor :in1
|
616
|
+
|
617
|
+
def initialize(in0 = nil, in1 = nil)
|
618
|
+
@in0 = in0
|
619
|
+
@in1 = in1
|
620
|
+
end
|
621
|
+
end
|
622
|
+
|
623
|
+
# {urn:SecurityServer}addGroupResponse
|
624
|
+
class AddGroupResponse
|
625
|
+
attr_accessor :out
|
626
|
+
|
627
|
+
def initialize(out = nil)
|
628
|
+
@out = out
|
629
|
+
end
|
630
|
+
end
|
631
|
+
|
632
|
+
# {urn:SecurityServer}findRoleMemberships
|
633
|
+
class FindRoleMemberships
|
634
|
+
attr_accessor :in0
|
635
|
+
attr_accessor :in1
|
636
|
+
|
637
|
+
def initialize(in0 = nil, in1 = nil)
|
638
|
+
@in0 = in0
|
639
|
+
@in1 = in1
|
640
|
+
end
|
641
|
+
end
|
642
|
+
|
643
|
+
# {urn:SecurityServer}findRoleMembershipsResponse
|
644
|
+
class FindRoleMembershipsResponse
|
645
|
+
attr_accessor :out
|
646
|
+
|
647
|
+
def initialize(out = nil)
|
648
|
+
@out = out
|
649
|
+
end
|
650
|
+
end
|
651
|
+
|
652
|
+
# {urn:SecurityServer}getCacheTime
|
653
|
+
class GetCacheTime
|
654
|
+
attr_accessor :in0
|
655
|
+
|
656
|
+
def initialize(in0 = nil)
|
657
|
+
@in0 = in0
|
658
|
+
end
|
659
|
+
end
|
660
|
+
|
661
|
+
# {urn:SecurityServer}getCacheTimeResponse
|
662
|
+
class GetCacheTimeResponse
|
663
|
+
attr_accessor :out
|
664
|
+
|
665
|
+
def initialize(out = nil)
|
666
|
+
@out = out
|
667
|
+
end
|
668
|
+
end
|
669
|
+
|
670
|
+
# {urn:SecurityServer}removePrincipal
|
671
|
+
class RemovePrincipal
|
672
|
+
attr_accessor :in0
|
673
|
+
attr_accessor :in1
|
674
|
+
|
675
|
+
def initialize(in0 = nil, in1 = nil)
|
676
|
+
@in0 = in0
|
677
|
+
@in1 = in1
|
678
|
+
end
|
679
|
+
end
|
680
|
+
|
681
|
+
# {urn:SecurityServer}removePrincipalResponse
|
682
|
+
class RemovePrincipalResponse
|
683
|
+
def initialize
|
684
|
+
end
|
685
|
+
end
|
686
|
+
|
687
|
+
# {urn:SecurityServer}resetPrincipalCredential
|
688
|
+
class ResetPrincipalCredential
|
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}resetPrincipalCredentialResponse
|
699
|
+
class ResetPrincipalCredentialResponse
|
700
|
+
def initialize
|
701
|
+
end
|
702
|
+
end
|
703
|
+
|
704
|
+
# {urn:SecurityServer}findAllRoleNames
|
705
|
+
class FindAllRoleNames
|
706
|
+
attr_accessor :in0
|
707
|
+
|
708
|
+
def initialize(in0 = nil)
|
709
|
+
@in0 = in0
|
710
|
+
end
|
711
|
+
end
|
712
|
+
|
713
|
+
# {urn:SecurityServer}findAllRoleNamesResponse
|
714
|
+
class FindAllRoleNamesResponse
|
715
|
+
attr_accessor :out
|
716
|
+
|
717
|
+
def initialize(out = nil)
|
718
|
+
@out = out
|
719
|
+
end
|
720
|
+
end
|
721
|
+
|
722
|
+
# {urn:SecurityServer}addPrincipalToRole
|
723
|
+
class AddPrincipalToRole
|
724
|
+
attr_accessor :in0
|
725
|
+
attr_accessor :in1
|
726
|
+
attr_accessor :in2
|
727
|
+
|
728
|
+
def initialize(in0 = nil, in1 = nil, in2 = nil)
|
729
|
+
@in0 = in0
|
730
|
+
@in1 = in1
|
731
|
+
@in2 = in2
|
732
|
+
end
|
733
|
+
end
|
734
|
+
|
735
|
+
# {urn:SecurityServer}addPrincipalToRoleResponse
|
736
|
+
class AddPrincipalToRoleResponse
|
737
|
+
def initialize
|
738
|
+
end
|
739
|
+
end
|
740
|
+
|
741
|
+
# {urn:SecurityServer}invalidatePrincipalToken
|
742
|
+
class InvalidatePrincipalToken
|
743
|
+
attr_accessor :in0
|
744
|
+
attr_accessor :in1
|
745
|
+
|
746
|
+
def initialize(in0 = nil, in1 = nil)
|
747
|
+
@in0 = in0
|
748
|
+
@in1 = in1
|
749
|
+
end
|
750
|
+
end
|
751
|
+
|
752
|
+
# {urn:SecurityServer}invalidatePrincipalTokenResponse
|
753
|
+
class InvalidatePrincipalTokenResponse
|
754
|
+
def initialize
|
755
|
+
end
|
756
|
+
end
|
757
|
+
|
758
|
+
# {urn:SecurityServer}searchPrincipals
|
759
|
+
class SearchPrincipals
|
760
|
+
attr_accessor :in0
|
761
|
+
attr_accessor :in1
|
762
|
+
|
763
|
+
def initialize(in0 = nil, in1 = nil)
|
764
|
+
@in0 = in0
|
765
|
+
@in1 = in1
|
766
|
+
end
|
767
|
+
end
|
768
|
+
|
769
|
+
# {urn:SecurityServer}searchPrincipalsResponse
|
770
|
+
class SearchPrincipalsResponse
|
771
|
+
attr_accessor :out
|
772
|
+
|
773
|
+
def initialize(out = nil)
|
774
|
+
@out = out
|
775
|
+
end
|
776
|
+
end
|
777
|
+
|
778
|
+
# {urn:SecurityServer}findGroupByName
|
779
|
+
class FindGroupByName
|
780
|
+
attr_accessor :in0
|
781
|
+
attr_accessor :in1
|
782
|
+
|
783
|
+
def initialize(in0 = nil, in1 = nil)
|
784
|
+
@in0 = in0
|
785
|
+
@in1 = in1
|
786
|
+
end
|
787
|
+
end
|
788
|
+
|
789
|
+
# {urn:SecurityServer}findGroupByNameResponse
|
790
|
+
class FindGroupByNameResponse
|
791
|
+
attr_accessor :out
|
792
|
+
|
793
|
+
def initialize(out = nil)
|
794
|
+
@out = out
|
795
|
+
end
|
796
|
+
end
|
797
|
+
|
798
|
+
# {urn:SecurityServer}findAllGroupNames
|
799
|
+
class FindAllGroupNames
|
800
|
+
attr_accessor :in0
|
801
|
+
|
802
|
+
def initialize(in0 = nil)
|
803
|
+
@in0 = in0
|
804
|
+
end
|
805
|
+
end
|
806
|
+
|
807
|
+
# {urn:SecurityServer}findAllGroupNamesResponse
|
808
|
+
class FindAllGroupNamesResponse
|
809
|
+
attr_accessor :out
|
810
|
+
|
811
|
+
def initialize(out = nil)
|
812
|
+
@out = out
|
813
|
+
end
|
814
|
+
end
|
815
|
+
|
816
|
+
# {urn:SecurityServer}addAttributeToPrincipal
|
817
|
+
class AddAttributeToPrincipal
|
818
|
+
attr_accessor :in0
|
819
|
+
attr_accessor :in1
|
820
|
+
attr_accessor :in2
|
821
|
+
|
822
|
+
def initialize(in0 = nil, in1 = nil, in2 = nil)
|
823
|
+
@in0 = in0
|
824
|
+
@in1 = in1
|
825
|
+
@in2 = in2
|
826
|
+
end
|
827
|
+
end
|
828
|
+
|
829
|
+
# {urn:SecurityServer}addAttributeToPrincipalResponse
|
830
|
+
class AddAttributeToPrincipalResponse
|
831
|
+
def initialize
|
832
|
+
end
|
833
|
+
end
|
834
|
+
|
835
|
+
# {urn:SecurityServer}removePrincipalFromGroup
|
836
|
+
class RemovePrincipalFromGroup
|
837
|
+
attr_accessor :in0
|
838
|
+
attr_accessor :in1
|
839
|
+
attr_accessor :in2
|
840
|
+
|
841
|
+
def initialize(in0 = nil, in1 = nil, in2 = nil)
|
842
|
+
@in0 = in0
|
843
|
+
@in1 = in1
|
844
|
+
@in2 = in2
|
845
|
+
end
|
846
|
+
end
|
847
|
+
|
848
|
+
# {urn:SecurityServer}removePrincipalFromGroupResponse
|
849
|
+
class RemovePrincipalFromGroupResponse
|
850
|
+
def initialize
|
851
|
+
end
|
852
|
+
end
|
853
|
+
|
854
|
+
# {urn:SecurityServer}findGroupMemberships
|
855
|
+
class FindGroupMemberships
|
856
|
+
attr_accessor :in0
|
857
|
+
attr_accessor :in1
|
858
|
+
|
859
|
+
def initialize(in0 = nil, in1 = nil)
|
860
|
+
@in0 = in0
|
861
|
+
@in1 = in1
|
862
|
+
end
|
863
|
+
end
|
864
|
+
|
865
|
+
# {urn:SecurityServer}findGroupMembershipsResponse
|
866
|
+
class FindGroupMembershipsResponse
|
867
|
+
attr_accessor :out
|
868
|
+
|
869
|
+
def initialize(out = nil)
|
870
|
+
@out = out
|
871
|
+
end
|
872
|
+
end
|
873
|
+
|
874
|
+
# {urn:SecurityServer}updatePrincipalCredential
|
875
|
+
class UpdatePrincipalCredential
|
876
|
+
attr_accessor :in0
|
877
|
+
attr_accessor :in1
|
878
|
+
attr_accessor :in2
|
879
|
+
|
880
|
+
def initialize(in0 = nil, in1 = nil, in2 = nil)
|
881
|
+
@in0 = in0
|
882
|
+
@in1 = in1
|
883
|
+
@in2 = in2
|
884
|
+
end
|
885
|
+
end
|
886
|
+
|
887
|
+
# {urn:SecurityServer}updatePrincipalCredentialResponse
|
888
|
+
class UpdatePrincipalCredentialResponse
|
889
|
+
def initialize
|
890
|
+
end
|
891
|
+
end
|
892
|
+
|
893
|
+
# {urn:SecurityServer}updatePrincipalAttribute
|
894
|
+
class UpdatePrincipalAttribute
|
895
|
+
attr_accessor :in0
|
896
|
+
attr_accessor :in1
|
897
|
+
attr_accessor :in2
|
898
|
+
|
899
|
+
def initialize(in0 = nil, in1 = nil, in2 = nil)
|
900
|
+
@in0 = in0
|
901
|
+
@in1 = in1
|
902
|
+
@in2 = in2
|
903
|
+
end
|
904
|
+
end
|
905
|
+
|
906
|
+
# {urn:SecurityServer}updatePrincipalAttributeResponse
|
907
|
+
class UpdatePrincipalAttributeResponse
|
908
|
+
def initialize
|
909
|
+
end
|
910
|
+
end
|
911
|
+
|
912
|
+
# {urn:SecurityServer}findAllPrincipalNames
|
913
|
+
class FindAllPrincipalNames
|
914
|
+
attr_accessor :in0
|
915
|
+
|
916
|
+
def initialize(in0 = nil)
|
917
|
+
@in0 = in0
|
918
|
+
end
|
919
|
+
end
|
920
|
+
|
921
|
+
# {urn:SecurityServer}findAllPrincipalNamesResponse
|
922
|
+
class FindAllPrincipalNamesResponse
|
923
|
+
attr_accessor :out
|
924
|
+
|
925
|
+
def initialize(out = nil)
|
926
|
+
@out = out
|
927
|
+
end
|
928
|
+
end
|
929
|
+
|
930
|
+
# {urn:SecurityServer}searchRoles
|
931
|
+
class SearchRoles
|
932
|
+
attr_accessor :in0
|
933
|
+
attr_accessor :in1
|
934
|
+
|
935
|
+
def initialize(in0 = nil, in1 = nil)
|
936
|
+
@in0 = in0
|
937
|
+
@in1 = in1
|
938
|
+
end
|
939
|
+
end
|
940
|
+
|
941
|
+
# {urn:SecurityServer}searchRolesResponse
|
942
|
+
class SearchRolesResponse
|
943
|
+
attr_accessor :out
|
944
|
+
|
945
|
+
def initialize(out = nil)
|
946
|
+
@out = out
|
947
|
+
end
|
948
|
+
end
|
949
|
+
|
950
|
+
# {urn:SecurityServer}isCacheEnabled
|
951
|
+
class IsCacheEnabled
|
952
|
+
attr_accessor :in0
|
953
|
+
|
954
|
+
def initialize(in0 = nil)
|
955
|
+
@in0 = in0
|
956
|
+
end
|
957
|
+
end
|
958
|
+
|
959
|
+
# {urn:SecurityServer}isCacheEnabledResponse
|
960
|
+
class IsCacheEnabledResponse
|
961
|
+
attr_accessor :out
|
962
|
+
|
963
|
+
def initialize(out = nil)
|
964
|
+
@out = out
|
965
|
+
end
|
966
|
+
end
|
967
|
+
|
968
|
+
# {urn:SecurityServer}addPrincipal
|
969
|
+
class AddPrincipal
|
970
|
+
attr_accessor :in0
|
971
|
+
attr_accessor :in1
|
972
|
+
attr_accessor :in2
|
973
|
+
|
974
|
+
def initialize(in0 = nil, in1 = nil, in2 = nil)
|
975
|
+
@in0 = in0
|
976
|
+
@in1 = in1
|
977
|
+
@in2 = in2
|
978
|
+
end
|
979
|
+
end
|
980
|
+
|
981
|
+
# {urn:SecurityServer}addPrincipalResponse
|
982
|
+
class AddPrincipalResponse
|
983
|
+
attr_accessor :out
|
984
|
+
|
985
|
+
def initialize(out = nil)
|
986
|
+
@out = out
|
987
|
+
end
|
988
|
+
end
|
989
|
+
|
990
|
+
# {urn:SecurityServer}isValidPrincipalToken
|
991
|
+
class IsValidPrincipalToken
|
992
|
+
attr_accessor :in0
|
993
|
+
attr_accessor :in1
|
994
|
+
attr_accessor :in2
|
995
|
+
|
996
|
+
def initialize(in0 = nil, in1 = nil, in2 = nil)
|
997
|
+
@in0 = in0
|
998
|
+
@in1 = in1
|
999
|
+
@in2 = in2
|
1000
|
+
end
|
1001
|
+
end
|
1002
|
+
|
1003
|
+
# {urn:SecurityServer}isValidPrincipalTokenResponse
|
1004
|
+
class IsValidPrincipalTokenResponse
|
1005
|
+
attr_accessor :out
|
1006
|
+
|
1007
|
+
def initialize(out = nil)
|
1008
|
+
@out = out
|
1009
|
+
end
|
1010
|
+
end
|
1011
|
+
|
1012
|
+
# {urn:SecurityServer}removeGroup
|
1013
|
+
class RemoveGroup
|
1014
|
+
attr_accessor :in0
|
1015
|
+
attr_accessor :in1
|
1016
|
+
|
1017
|
+
def initialize(in0 = nil, in1 = nil)
|
1018
|
+
@in0 = in0
|
1019
|
+
@in1 = in1
|
1020
|
+
end
|
1021
|
+
end
|
1022
|
+
|
1023
|
+
# {urn:SecurityServer}removeGroupResponse
|
1024
|
+
class RemoveGroupResponse
|
1025
|
+
def initialize
|
1026
|
+
end
|
1027
|
+
end
|
1028
|
+
|
1029
|
+
# {urn:SecurityServer}authenticatePrincipal
|
1030
|
+
class AuthenticatePrincipal
|
1031
|
+
attr_accessor :in0
|
1032
|
+
attr_accessor :in1
|
1033
|
+
|
1034
|
+
def initialize(in0 = nil, in1 = nil)
|
1035
|
+
@in0 = in0
|
1036
|
+
@in1 = in1
|
1037
|
+
end
|
1038
|
+
end
|
1039
|
+
|
1040
|
+
# {urn:SecurityServer}authenticatePrincipalResponse
|
1041
|
+
class AuthenticatePrincipalResponse
|
1042
|
+
attr_accessor :out
|
1043
|
+
|
1044
|
+
def initialize(out = nil)
|
1045
|
+
@out = out
|
1046
|
+
end
|
1047
|
+
end
|