This file is indexed.

/usr/share/doc/libshibsp-doc/html/a00006.html is in libshibsp-doc 2.5.3+dfsg-2.1build1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  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
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.9.1"/>
<title>shibboleth-2.5.3: shibsp::AssertionConsumerService Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtreedata.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<script type="text/javascript">
  $(document).ready(initResizable);
  $(window).load(resizeHeight);
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
 <tbody>
 <tr style="height: 56px;">
  <td style="padding-left: 0.5em;">
   <div id="projectname">shibboleth-2.5.3
   </div>
  </td>
 </tr>
 </tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.9.1 -->
  <div id="navrow1" class="tabs">
    <ul class="tablist">
      <li><a href="index.html"><span>Main&#160;Page</span></a></li>
      <li><a href="pages.html"><span>Related&#160;Pages</span></a></li>
      <li><a href="namespaces.html"><span>Namespaces</span></a></li>
      <li class="current"><a href="annotated.html"><span>Classes</span></a></li>
      <li><a href="files.html"><span>Files</span></a></li>
    </ul>
  </div>
  <div id="navrow2" class="tabs2">
    <ul class="tablist">
      <li><a href="annotated.html"><span>Class&#160;List</span></a></li>
      <li><a href="hierarchy.html"><span>Class&#160;Hierarchy</span></a></li>
      <li><a href="functions.html"><span>Class&#160;Members</span></a></li>
    </ul>
  </div>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
  <div id="nav-tree">
    <div id="nav-tree-contents">
      <div id="nav-sync" class="sync"></div>
    </div>
  </div>
  <div id="splitbar" style="-moz-user-select:none;" 
       class="ui-resizable-handle">
  </div>
</div>
<script type="text/javascript">
$(document).ready(function(){initNavTree('a00006.html','');});
</script>
<div id="doc-content">
<div class="header">
  <div class="summary">
<a href="#pub-methods">Public Member Functions</a> &#124;
<a href="#pro-methods">Protected Member Functions</a> &#124;
<a href="a00143.html">List of all members</a>  </div>
  <div class="headertitle">
<div class="title">shibsp::AssertionConsumerService Class Reference<span class="mlabels"><span class="mlabel">abstract</span></span></div>  </div>
</div><!--header-->
<div class="contents">

<p>Base class for handlers that create sessions by consuming SSO protocol responses.  
 <a href="a00006.html#details">More...</a></p>

<p><code>#include &lt;shibsp/handler/AssertionConsumerService.h&gt;</code></p>
<div class="dynheader">
Inheritance diagram for shibsp::AssertionConsumerService:</div>
<div class="dyncontent">
 <div class="center">
  <img src="a00006.png" usemap="#shibsp::AssertionConsumerService_map" alt=""/>
  <map id="shibsp::AssertionConsumerService_map" name="shibsp::AssertionConsumerService_map">
<area href="a00001.html" title="Base class for handlers based on a DOMPropertySet. " alt="shibsp::AbstractHandler" shape="rect" coords="109,112,317,136"/>
<area href="a00037.html" title="Base class for handlers that need HTTP request/response layer to be remoted. " alt="shibsp::RemotedHandler" shape="rect" coords="545,112,753,136"/>
<area href="a00024.html" title="Pluggable runtime functionality that implement protocols and services. " alt="shibsp::Handler" shape="rect" coords="0,56,208,80"/>
<area href="a00019.html" title="DOM-based property set implementation. " alt="shibsp::DOMPropertySet" shape="rect" coords="218,56,426,80"/>
<area href="a00024.html" title="Pluggable runtime functionality that implement protocols and services. " alt="shibsp::Handler" shape="rect" coords="436,56,644,80"/>
<area href="a00036.html" title="Interface to a remoted service. " alt="shibsp::Remoted" shape="rect" coords="654,56,862,80"/>
<area href="a00034.html" title="Interface to a generic set of typed properties or a DOM container of additional data. " alt="shibsp::PropertySet" shape="rect" coords="0,0,208,24"/>
<area href="a00034.html" title="Interface to a generic set of typed properties or a DOM container of additional data. " alt="shibsp::PropertySet" shape="rect" coords="218,0,426,24"/>
<area href="a00034.html" title="Interface to a generic set of typed properties or a DOM container of additional data. " alt="shibsp::PropertySet" shape="rect" coords="436,0,644,24"/>
</map>
 </div></div>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a>
Public Member Functions</h2></td></tr>
<tr class="memitem:a27e9f94bc348fd7d0c71b7504fca59d9"><td class="memItemLeft" align="right" valign="top">std::pair&lt; bool, long &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00006.html#a27e9f94bc348fd7d0c71b7504fca59d9">run</a> (<a class="el" href="a00053.html">SPRequest</a> &amp;request, bool isHandler=true) const </td></tr>
<tr class="memdesc:a27e9f94bc348fd7d0c71b7504fca59d9"><td class="mdescLeft">&#160;</td><td class="mdescRight">Executes handler functionality as an incoming request.  <a href="#a27e9f94bc348fd7d0c71b7504fca59d9">More...</a><br /></td></tr>
<tr class="separator:a27e9f94bc348fd7d0c71b7504fca59d9"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ae1e3728a3637f9e05af1bade7faa0209"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00006.html#ae1e3728a3637f9e05af1bade7faa0209">receive</a> (<a class="el" href="a00017.html">DDF</a> &amp;in, std::ostream &amp;out)</td></tr>
<tr class="memdesc:ae1e3728a3637f9e05af1bade7faa0209"><td class="mdescLeft">&#160;</td><td class="mdescRight"><a class="el" href="a00036.html" title="Interface to a remoted service. ">Remoted</a> classes implement this method to process incoming messages.  <a href="#ae1e3728a3637f9e05af1bade7faa0209">More...</a><br /></td></tr>
<tr class="separator:ae1e3728a3637f9e05af1bade7faa0209"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aab806f610a434fb0aecec8a7069f4ad2"><td class="memItemLeft" align="right" valign="top">const char *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00006.html#aab806f610a434fb0aecec8a7069f4ad2">getType</a> () const </td></tr>
<tr class="memdesc:aab806f610a434fb0aecec8a7069f4ad2"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns the "type" of the <a class="el" href="a00024.html" title="Pluggable runtime functionality that implement protocols and services. ">Handler</a> plugin.  <a href="#aab806f610a434fb0aecec8a7069f4ad2">More...</a><br /></td></tr>
<tr class="separator:aab806f610a434fb0aecec8a7069f4ad2"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a23090937be0811c98b9044ae26673ede"><td class="memItemLeft" align="right" valign="top">const XMLCh *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00006.html#a23090937be0811c98b9044ae26673ede">getProtocolFamily</a> () const </td></tr>
<tr class="memdesc:a23090937be0811c98b9044ae26673ede"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns an identifier for the protocol family associated with the handler, if any.  <a href="#a23090937be0811c98b9044ae26673ede">More...</a><br /></td></tr>
<tr class="separator:a23090937be0811c98b9044ae26673ede"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pub_methods_a00019"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_a00019')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="a00019.html">shibsp::DOMPropertySet</a></td></tr>
<tr class="memitem:aae28fecd0bf90bb64e7b09278bd03530 inherit pub_methods_a00019"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="a00034.html">PropertySet</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00019.html#aae28fecd0bf90bb64e7b09278bd03530">getParent</a> () const </td></tr>
<tr class="memdesc:aae28fecd0bf90bb64e7b09278bd03530 inherit pub_methods_a00019"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns parent of this <a class="el" href="a00034.html" title="Interface to a generic set of typed properties or a DOM container of additional data. ">PropertySet</a>, if any.  <a href="#aae28fecd0bf90bb64e7b09278bd03530">More...</a><br /></td></tr>
<tr class="separator:aae28fecd0bf90bb64e7b09278bd03530 inherit pub_methods_a00019"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac063c2a9bc5b5881fd87c4bf09f46f08 inherit pub_methods_a00019"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00019.html#ac063c2a9bc5b5881fd87c4bf09f46f08">setParent</a> (const <a class="el" href="a00034.html">PropertySet</a> *parent)</td></tr>
<tr class="memdesc:ac063c2a9bc5b5881fd87c4bf09f46f08 inherit pub_methods_a00019"><td class="mdescLeft">&#160;</td><td class="mdescRight">Establishes a "parent" <a class="el" href="a00034.html" title="Interface to a generic set of typed properties or a DOM container of additional data. ">PropertySet</a> to supply inherited settings.  <a href="#ac063c2a9bc5b5881fd87c4bf09f46f08">More...</a><br /></td></tr>
<tr class="separator:ac063c2a9bc5b5881fd87c4bf09f46f08 inherit pub_methods_a00019"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac30b948087b77030bdba76389516c6f2 inherit pub_methods_a00019"><td class="memItemLeft" align="right" valign="top">std::pair&lt; bool, bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00019.html#ac30b948087b77030bdba76389516c6f2">getBool</a> (const char *name, const char *ns=nullptr) const </td></tr>
<tr class="memdesc:ac30b948087b77030bdba76389516c6f2 inherit pub_methods_a00019"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns a boolean-valued property.  <a href="#ac30b948087b77030bdba76389516c6f2">More...</a><br /></td></tr>
<tr class="separator:ac30b948087b77030bdba76389516c6f2 inherit pub_methods_a00019"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab017fc985e21496e2781823c98167f7b inherit pub_methods_a00019"><td class="memItemLeft" align="right" valign="top">std::pair&lt; bool, const char * &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00019.html#ab017fc985e21496e2781823c98167f7b">getString</a> (const char *name, const char *ns=nullptr) const </td></tr>
<tr class="memdesc:ab017fc985e21496e2781823c98167f7b inherit pub_methods_a00019"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns a string-valued property.  <a href="#ab017fc985e21496e2781823c98167f7b">More...</a><br /></td></tr>
<tr class="separator:ab017fc985e21496e2781823c98167f7b inherit pub_methods_a00019"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab8cd5d48936c7fee3014c93deabede79 inherit pub_methods_a00019"><td class="memItemLeft" align="right" valign="top">std::pair&lt; bool, const XMLCh * &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00019.html#ab8cd5d48936c7fee3014c93deabede79">getXMLString</a> (const char *name, const char *ns=nullptr) const </td></tr>
<tr class="memdesc:ab8cd5d48936c7fee3014c93deabede79 inherit pub_methods_a00019"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns a Unicode string-valued property.  <a href="#ab8cd5d48936c7fee3014c93deabede79">More...</a><br /></td></tr>
<tr class="separator:ab8cd5d48936c7fee3014c93deabede79 inherit pub_methods_a00019"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a27399d5e63b0b268de1dee6ff7e0dd74 inherit pub_methods_a00019"><td class="memItemLeft" align="right" valign="top">std::pair&lt; bool, unsigned int &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00019.html#a27399d5e63b0b268de1dee6ff7e0dd74">getUnsignedInt</a> (const char *name, const char *ns=nullptr) const </td></tr>
<tr class="memdesc:a27399d5e63b0b268de1dee6ff7e0dd74 inherit pub_methods_a00019"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns an unsigned integer-valued property.  <a href="#a27399d5e63b0b268de1dee6ff7e0dd74">More...</a><br /></td></tr>
<tr class="separator:a27399d5e63b0b268de1dee6ff7e0dd74 inherit pub_methods_a00019"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a567b00639c7053f271ae814485f9066a inherit pub_methods_a00019"><td class="memItemLeft" align="right" valign="top">std::pair&lt; bool, int &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00019.html#a567b00639c7053f271ae814485f9066a">getInt</a> (const char *name, const char *ns=nullptr) const </td></tr>
<tr class="memdesc:a567b00639c7053f271ae814485f9066a inherit pub_methods_a00019"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns an integer-valued property.  <a href="#a567b00639c7053f271ae814485f9066a">More...</a><br /></td></tr>
<tr class="separator:a567b00639c7053f271ae814485f9066a inherit pub_methods_a00019"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a06c3d7aa85892b6535133ed67154522c inherit pub_methods_a00019"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00019.html#a06c3d7aa85892b6535133ed67154522c">getAll</a> (std::map&lt; std::string, const char * &gt; &amp;properties) const </td></tr>
<tr class="memdesc:a06c3d7aa85892b6535133ed67154522c inherit pub_methods_a00019"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns a map of all known properties in string form.  <a href="#a06c3d7aa85892b6535133ed67154522c">More...</a><br /></td></tr>
<tr class="separator:a06c3d7aa85892b6535133ed67154522c inherit pub_methods_a00019"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad28dddc643f538829f0ebdcbdc81d4e1 inherit pub_methods_a00019"><td class="memItemLeft" align="right" valign="top">const <a class="el" href="a00034.html">PropertySet</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00019.html#ad28dddc643f538829f0ebdcbdc81d4e1">getPropertySet</a> (const char *name, const char *ns=<a class="el" href="a00128.html#a7c430d9a2b402fafe37a49e23b941d27">shibspconstants::ASCII_SHIB2SPCONFIG_NS</a>) const </td></tr>
<tr class="memdesc:ad28dddc643f538829f0ebdcbdc81d4e1 inherit pub_methods_a00019"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns a nested property set.  <a href="#ad28dddc643f538829f0ebdcbdc81d4e1">More...</a><br /></td></tr>
<tr class="separator:ad28dddc643f538829f0ebdcbdc81d4e1 inherit pub_methods_a00019"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a2b6c11add2a74af7e20c4fa05f07a075 inherit pub_methods_a00019"><td class="memItemLeft" align="right" valign="top">const xercesc::DOMElement *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00019.html#a2b6c11add2a74af7e20c4fa05f07a075">getElement</a> () const </td></tr>
<tr class="memdesc:a2b6c11add2a74af7e20c4fa05f07a075 inherit pub_methods_a00019"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns a DOM element representing the property container, if any.  <a href="#a2b6c11add2a74af7e20c4fa05f07a075">More...</a><br /></td></tr>
<tr class="separator:a2b6c11add2a74af7e20c4fa05f07a075 inherit pub_methods_a00019"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a53b982f9480a15786eecdf6b3ed4a527 inherit pub_methods_a00019"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00019.html#a53b982f9480a15786eecdf6b3ed4a527">load</a> (const xercesc::DOMElement *e, xmltooling::logging::Category *log=nullptr, xercesc::DOMNodeFilter *filter=nullptr, const std::map&lt; std::string, std::string &gt; *remapper=nullptr)</td></tr>
<tr class="memdesc:a53b982f9480a15786eecdf6b3ed4a527 inherit pub_methods_a00019"><td class="mdescLeft">&#160;</td><td class="mdescRight">Loads the property set from a DOM element.  <a href="#a53b982f9480a15786eecdf6b3ed4a527">More...</a><br /></td></tr>
<tr class="separator:a53b982f9480a15786eecdf6b3ed4a527 inherit pub_methods_a00019"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pro-methods"></a>
Protected Member Functions</h2></td></tr>
<tr class="memitem:a37e189b7c0109acd531ef0f191e7e032"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00006.html#a37e189b7c0109acd531ef0f191e7e032">AssertionConsumerService</a> (const xercesc::DOMElement *e, const char *appId, xmltooling::logging::Category &amp;<a class="el" href="a00001.html#ad64993bb2bb67b2de7eea4ba06b38b93">log</a>, xercesc::DOMNodeFilter *filter=nullptr, const std::map&lt; std::string, std::string &gt; *remapper=nullptr)</td></tr>
<tr class="memdesc:a37e189b7c0109acd531ef0f191e7e032"><td class="mdescLeft">&#160;</td><td class="mdescRight">Constructor.  <a href="#a37e189b7c0109acd531ef0f191e7e032">More...</a><br /></td></tr>
<tr class="separator:a37e189b7c0109acd531ef0f191e7e032"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a172f87cae64bc0ddb08e4ed7d95d549a"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00006.html#a172f87cae64bc0ddb08e4ed7d95d549a">checkAddress</a> (const <a class="el" href="a00004.html">Application</a> &amp;application, const xmltooling::HTTPRequest &amp;httpRequest, const char *issuedTo) const </td></tr>
<tr class="memdesc:a172f87cae64bc0ddb08e4ed7d95d549a"><td class="mdescLeft">&#160;</td><td class="mdescRight">Enforce address checking requirements.  <a href="#a172f87cae64bc0ddb08e4ed7d95d549a">More...</a><br /></td></tr>
<tr class="separator:a172f87cae64bc0ddb08e4ed7d95d549a"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ac9f44c621d81ca3c2f52593a19fce9de"><td class="memItemLeft" align="right" valign="top">virtual std::pair&lt; bool, long &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00006.html#ac9f44c621d81ca3c2f52593a19fce9de">finalizeResponse</a> (const <a class="el" href="a00004.html">Application</a> &amp;application, const xmltooling::HTTPRequest &amp;httpRequest, xmltooling::HTTPResponse &amp;httpResponse, std::string &amp;relayState) const </td></tr>
<tr class="memdesc:ac9f44c621d81ca3c2f52593a19fce9de"><td class="mdescLeft">&#160;</td><td class="mdescRight">Complete the client's transition back to the expected resource.  <a href="#ac9f44c621d81ca3c2f52593a19fce9de">More...</a><br /></td></tr>
<tr class="separator:ac9f44c621d81ca3c2f52593a19fce9de"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:addceeeaf0104cd9ce607df3268b25c02"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00006.html#addceeeaf0104cd9ce607df3268b25c02">generateMetadata</a> (opensaml::saml2md::SPSSODescriptor &amp;role, const char *handlerURL) const </td></tr>
<tr class="memdesc:addceeeaf0104cd9ce607df3268b25c02"><td class="mdescLeft">&#160;</td><td class="mdescRight">Generates and/or modifies metadata reflecting the <a class="el" href="a00024.html" title="Pluggable runtime functionality that implement protocols and services. ">Handler</a>.  <a href="#addceeeaf0104cd9ce607df3268b25c02">More...</a><br /></td></tr>
<tr class="separator:addceeeaf0104cd9ce607df3268b25c02"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5a70db7238d35d567f3054b6815b9ee4"><td class="memItemLeft" align="right" valign="top">virtual opensaml::SecurityPolicy *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00006.html#a5a70db7238d35d567f3054b6815b9ee4">createSecurityPolicy</a> (const <a class="el" href="a00004.html">Application</a> &amp;application, const xmltooling::QName *role, bool validate, const char *policyId) const </td></tr>
<tr class="separator:a5a70db7238d35d567f3054b6815b9ee4"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5c12f8ce09b000d3213d97f2bac4eb64"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00006.html#a5c12f8ce09b000d3213d97f2bac4eb64">implementProtocol</a> (const <a class="el" href="a00004.html">Application</a> &amp;application, const xmltooling::HTTPRequest &amp;httpRequest, xmltooling::HTTPResponse &amp;httpResponse, opensaml::SecurityPolicy &amp;policy, const <a class="el" href="a00034.html">PropertySet</a> *reserved, const xmltooling::XMLObject &amp;xmlObject) const =0</td></tr>
<tr class="memdesc:a5c12f8ce09b000d3213d97f2bac4eb64"><td class="mdescLeft">&#160;</td><td class="mdescRight">Implement protocol-specific handling of the incoming decoded message.  <a href="#a5c12f8ce09b000d3213d97f2bac4eb64">More...</a><br /></td></tr>
<tr class="separator:a5c12f8ce09b000d3213d97f2bac4eb64"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:acc9401cda3c16e153116136721d67e9e"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00006.html#acc9401cda3c16e153116136721d67e9e">extractMessageDetails</a> (const opensaml::Assertion &amp;assertion, const XMLCh *protocol, opensaml::SecurityPolicy &amp;policy) const </td></tr>
<tr class="memdesc:acc9401cda3c16e153116136721d67e9e"><td class="mdescLeft">&#160;</td><td class="mdescRight">Extracts policy-relevant assertion details.  <a href="#acc9401cda3c16e153116136721d67e9e">More...</a><br /></td></tr>
<tr class="separator:acc9401cda3c16e153116136721d67e9e"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aa629221fce8fb40cbfa6c03535637547"><td class="memItemLeft" align="right" valign="top"><a class="el" href="a00039.html">ResolutionContext</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00006.html#aa629221fce8fb40cbfa6c03535637547">resolveAttributes</a> (const <a class="el" href="a00004.html">Application</a> &amp;application, const opensaml::saml2md::RoleDescriptor *issuer=nullptr, const XMLCh *protocol=nullptr, const opensaml::saml1::NameIdentifier *v1nameid=nullptr, const opensaml::saml2::NameID *nameid=nullptr, const XMLCh *authncontext_class=nullptr, const XMLCh *authncontext_decl=nullptr, const std::vector&lt; const opensaml::Assertion * &gt; *tokens=nullptr) const </td></tr>
<tr class="separator:aa629221fce8fb40cbfa6c03535637547"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6e43cc6a64afe694e2b64a5a733c2d5d"><td class="memItemLeft" align="right" valign="top"><a class="el" href="a00039.html">ResolutionContext</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00006.html#a6e43cc6a64afe694e2b64a5a733c2d5d">resolveAttributes</a> (const <a class="el" href="a00004.html">Application</a> &amp;application, const xmltooling::GenericRequest *request=nullptr, const opensaml::saml2md::RoleDescriptor *issuer=nullptr, const XMLCh *protocol=nullptr, const xmltooling::XMLObject *protmsg=nullptr, const opensaml::saml1::NameIdentifier *v1nameid=nullptr, const opensaml::saml1::AuthenticationStatement *v1statement=nullptr, const opensaml::saml2::NameID *nameid=nullptr, const opensaml::saml2::AuthnStatement *statement=nullptr, const XMLCh *authncontext_class=nullptr, const XMLCh *authncontext_decl=nullptr, const std::vector&lt; const opensaml::Assertion * &gt; *tokens=nullptr) const </td></tr>
<tr class="memdesc:a6e43cc6a64afe694e2b64a5a733c2d5d"><td class="mdescLeft">&#160;</td><td class="mdescRight">Attempt SSO-initiated attribute resolution using the supplied information, including NameID and token extraction and filtering followed by secondary resolution.  <a href="#a6e43cc6a64afe694e2b64a5a733c2d5d">More...</a><br /></td></tr>
<tr class="separator:a6e43cc6a64afe694e2b64a5a733c2d5d"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a6b8b561928a0a7dd188a1f86e5363d62"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="a00027.html">LoginEvent</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00006.html#a6b8b561928a0a7dd188a1f86e5363d62">newLoginEvent</a> (const <a class="el" href="a00004.html">Application</a> &amp;application, const xmltooling::HTTPRequest &amp;request) const </td></tr>
<tr class="memdesc:a6b8b561928a0a7dd188a1f86e5363d62"><td class="mdescLeft">&#160;</td><td class="mdescRight">Creates a new <a class="el" href="a00012.html">AuthnRequestEvent</a> for the event log.  <a href="#a6b8b561928a0a7dd188a1f86e5363d62">More...</a><br /></td></tr>
<tr class="separator:a6b8b561928a0a7dd188a1f86e5363d62"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pro_methods_a00001"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_a00001')"><img src="closed.png" alt="-"/>&#160;Protected Member Functions inherited from <a class="el" href="a00001.html">shibsp::AbstractHandler</a></td></tr>
<tr class="memitem:aab31c75b778d4e5c27722f04f2cd80b9 inherit pro_methods_a00001"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00001.html#aab31c75b778d4e5c27722f04f2cd80b9">AbstractHandler</a> (const xercesc::DOMElement *e, xmltooling::logging::Category &amp;<a class="el" href="a00001.html#ad64993bb2bb67b2de7eea4ba06b38b93">log</a>, xercesc::DOMNodeFilter *filter=nullptr, const std::map&lt; std::string, std::string &gt; *remapper=nullptr)</td></tr>
<tr class="memdesc:aab31c75b778d4e5c27722f04f2cd80b9 inherit pro_methods_a00001"><td class="mdescLeft">&#160;</td><td class="mdescRight">Constructor.  <a href="#aab31c75b778d4e5c27722f04f2cd80b9">More...</a><br /></td></tr>
<tr class="separator:aab31c75b778d4e5c27722f04f2cd80b9 inherit pro_methods_a00001"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad64993bb2bb67b2de7eea4ba06b38b93 inherit pro_methods_a00001"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00001.html#ad64993bb2bb67b2de7eea4ba06b38b93">log</a> (<a class="el" href="a00053.html#a20701bedd21eab2b73de90cb364535a1">SPRequest::SPLogLevel</a> level, const std::string &amp;msg) const </td></tr>
<tr class="memdesc:ad64993bb2bb67b2de7eea4ba06b38b93 inherit pro_methods_a00001"><td class="mdescLeft">&#160;</td><td class="mdescRight">Log using handler's specific logging object.  <a href="#ad64993bb2bb67b2de7eea4ba06b38b93">More...</a><br /></td></tr>
<tr class="separator:ad64993bb2bb67b2de7eea4ba06b38b93 inherit pro_methods_a00001"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a74a7ad8808a8c8a243095ce6a32a5261 inherit pro_methods_a00001"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00001.html#a74a7ad8808a8c8a243095ce6a32a5261">checkError</a> (const xmltooling::XMLObject *response, const opensaml::saml2md::RoleDescriptor *role=nullptr) const </td></tr>
<tr class="memdesc:a74a7ad8808a8c8a243095ce6a32a5261 inherit pro_methods_a00001"><td class="mdescLeft">&#160;</td><td class="mdescRight">Examines a protocol response message for errors and raises an annotated exception if an error is found.  <a href="#a74a7ad8808a8c8a243095ce6a32a5261">More...</a><br /></td></tr>
<tr class="separator:a74a7ad8808a8c8a243095ce6a32a5261 inherit pro_methods_a00001"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a4ec6e65e81b1dc7bb699fb06d0dc9dc7 inherit pro_methods_a00001"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00001.html#a4ec6e65e81b1dc7bb699fb06d0dc9dc7">fillStatus</a> (opensaml::saml2p::StatusResponseType &amp;response, const XMLCh *code, const XMLCh *subcode=nullptr, const char *msg=nullptr) const </td></tr>
<tr class="memdesc:a4ec6e65e81b1dc7bb699fb06d0dc9dc7 inherit pro_methods_a00001"><td class="mdescLeft">&#160;</td><td class="mdescRight">Prepares Status information in a SAML 2.0 response.  <a href="#a4ec6e65e81b1dc7bb699fb06d0dc9dc7">More...</a><br /></td></tr>
<tr class="separator:a4ec6e65e81b1dc7bb699fb06d0dc9dc7 inherit pro_methods_a00001"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a150c03330cab705b8341604bdbe793d9 inherit pro_methods_a00001"><td class="memItemLeft" align="right" valign="top">long&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00001.html#a150c03330cab705b8341604bdbe793d9">sendMessage</a> (const opensaml::MessageEncoder &amp;encoder, xmltooling::XMLObject *msg, const char *relayState, const char *destination, const opensaml::saml2md::RoleDescriptor *role, const <a class="el" href="a00004.html">Application</a> &amp;application, xmltooling::HTTPResponse &amp;httpResponse, bool signIfPossible=false) const </td></tr>
<tr class="memdesc:a150c03330cab705b8341604bdbe793d9 inherit pro_methods_a00001"><td class="mdescLeft">&#160;</td><td class="mdescRight">Encodes and sends SAML 2.0 message, optionally signing it in the process.  <a href="#a150c03330cab705b8341604bdbe793d9">More...</a><br /></td></tr>
<tr class="separator:a150c03330cab705b8341604bdbe793d9 inherit pro_methods_a00001"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ad968dbd36b077e16629b413982151a61 inherit pro_methods_a00001"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00001.html#ad968dbd36b077e16629b413982151a61">preservePostData</a> (const <a class="el" href="a00004.html">Application</a> &amp;application, const xmltooling::HTTPRequest &amp;request, xmltooling::HTTPResponse &amp;response, const char *relayState) const </td></tr>
<tr class="memdesc:ad968dbd36b077e16629b413982151a61 inherit pro_methods_a00001"><td class="mdescLeft">&#160;</td><td class="mdescRight">Implements a mechanism to preserve form post data.  <a href="#ad968dbd36b077e16629b413982151a61">More...</a><br /></td></tr>
<tr class="separator:ad968dbd36b077e16629b413982151a61 inherit pro_methods_a00001"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a563bed07af889392a84b70131a8ea5f3 inherit pro_methods_a00001"><td class="memItemLeft" align="right" valign="top">virtual <a class="el" href="a00017.html">DDF</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00001.html#a563bed07af889392a84b70131a8ea5f3">recoverPostData</a> (const <a class="el" href="a00004.html">Application</a> &amp;application, const xmltooling::HTTPRequest &amp;request, xmltooling::HTTPResponse &amp;response, const char *relayState) const </td></tr>
<tr class="memdesc:a563bed07af889392a84b70131a8ea5f3 inherit pro_methods_a00001"><td class="mdescLeft">&#160;</td><td class="mdescRight">Implements storage service and cookie mechanism to recover PostData.  <a href="#a563bed07af889392a84b70131a8ea5f3">More...</a><br /></td></tr>
<tr class="separator:a563bed07af889392a84b70131a8ea5f3 inherit pro_methods_a00001"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5dca134627fa489a4c618a4211ce5aa2 inherit pro_methods_a00001"><td class="memItemLeft" align="right" valign="top">virtual long&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00001.html#a5dca134627fa489a4c618a4211ce5aa2">sendPostResponse</a> (const <a class="el" href="a00004.html">Application</a> &amp;application, xmltooling::HTTPResponse &amp;response, const char *url, <a class="el" href="a00017.html">DDF</a> &amp;postData) const </td></tr>
<tr class="memdesc:a5dca134627fa489a4c618a4211ce5aa2 inherit pro_methods_a00001"><td class="mdescLeft">&#160;</td><td class="mdescRight">Post a redirect response with post data.  <a href="#a5dca134627fa489a4c618a4211ce5aa2">More...</a><br /></td></tr>
<tr class="separator:a5dca134627fa489a4c618a4211ce5aa2 inherit pro_methods_a00001"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:ab9507a1aa802abef1a52749a46a47cbd inherit pro_methods_a00001"><td class="memItemLeft" align="right" valign="top">std::pair&lt; bool, bool &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00001.html#ab9507a1aa802abef1a52749a46a47cbd">getBool</a> (const char *name, const <a class="el" href="a00053.html">SPRequest</a> &amp;request, unsigned int type=HANDLER_PROPERTY_ALL) const </td></tr>
<tr class="memdesc:ab9507a1aa802abef1a52749a46a47cbd inherit pro_methods_a00001"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns a boolean-valued property.  <a href="#ab9507a1aa802abef1a52749a46a47cbd">More...</a><br /></td></tr>
<tr class="separator:ab9507a1aa802abef1a52749a46a47cbd inherit pro_methods_a00001"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a3cba8182d40b16f1456db757bbb531fb inherit pro_methods_a00001"><td class="memItemLeft" align="right" valign="top">std::pair&lt; bool, const char * &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00001.html#a3cba8182d40b16f1456db757bbb531fb">getString</a> (const char *name, const <a class="el" href="a00053.html">SPRequest</a> &amp;request, unsigned int type=HANDLER_PROPERTY_ALL) const </td></tr>
<tr class="memdesc:a3cba8182d40b16f1456db757bbb531fb inherit pro_methods_a00001"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns a string-valued property.  <a href="#a3cba8182d40b16f1456db757bbb531fb">More...</a><br /></td></tr>
<tr class="separator:a3cba8182d40b16f1456db757bbb531fb inherit pro_methods_a00001"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a5db86c3d80eab2403b98e026f2d863b4 inherit pro_methods_a00001"><td class="memItemLeft" align="right" valign="top">std::pair&lt; bool, unsigned int &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00001.html#a5db86c3d80eab2403b98e026f2d863b4">getUnsignedInt</a> (const char *name, const <a class="el" href="a00053.html">SPRequest</a> &amp;request, unsigned int type=HANDLER_PROPERTY_ALL) const </td></tr>
<tr class="memdesc:a5db86c3d80eab2403b98e026f2d863b4 inherit pro_methods_a00001"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns an unsigned integer-valued property.  <a href="#a5db86c3d80eab2403b98e026f2d863b4">More...</a><br /></td></tr>
<tr class="separator:a5db86c3d80eab2403b98e026f2d863b4 inherit pro_methods_a00001"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:abb01ea8c24ec1968ca38fc0b3fcea6fa inherit pro_methods_a00001"><td class="memItemLeft" align="right" valign="top">std::pair&lt; bool, int &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00001.html#abb01ea8c24ec1968ca38fc0b3fcea6fa">getInt</a> (const char *name, const <a class="el" href="a00053.html">SPRequest</a> &amp;request, unsigned int type=HANDLER_PROPERTY_ALL) const </td></tr>
<tr class="memdesc:abb01ea8c24ec1968ca38fc0b3fcea6fa inherit pro_methods_a00001"><td class="mdescLeft">&#160;</td><td class="mdescRight">Returns an integer-valued property.  <a href="#abb01ea8c24ec1968ca38fc0b3fcea6fa">More...</a><br /></td></tr>
<tr class="separator:abb01ea8c24ec1968ca38fc0b3fcea6fa inherit pro_methods_a00001"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pro_methods_a00024"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_a00024')"><img src="closed.png" alt="-"/>&#160;Protected Member Functions inherited from <a class="el" href="a00024.html">shibsp::Handler</a></td></tr>
<tr class="memitem:a8c78dee1e5d3f4e8e6b3669dbaadf90c inherit pro_methods_a00024"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00024.html#a8c78dee1e5d3f4e8e6b3669dbaadf90c">cleanRelayState</a> (const <a class="el" href="a00004.html">Application</a> &amp;application, const xmltooling::HTTPRequest &amp;request, xmltooling::HTTPResponse &amp;response) const </td></tr>
<tr class="memdesc:a8c78dee1e5d3f4e8e6b3669dbaadf90c inherit pro_methods_a00024"><td class="mdescLeft">&#160;</td><td class="mdescRight">Prevents unused relay state from building up by cleaning old state from the client.  <a href="#a8c78dee1e5d3f4e8e6b3669dbaadf90c">More...</a><br /></td></tr>
<tr class="separator:a8c78dee1e5d3f4e8e6b3669dbaadf90c inherit pro_methods_a00024"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a706aab1f40db95dbb72aa3e6910c905c inherit pro_methods_a00024"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00024.html#a706aab1f40db95dbb72aa3e6910c905c">preserveRelayState</a> (const <a class="el" href="a00004.html">Application</a> &amp;application, xmltooling::HTTPResponse &amp;response, std::string &amp;relayState) const </td></tr>
<tr class="memdesc:a706aab1f40db95dbb72aa3e6910c905c inherit pro_methods_a00024"><td class="mdescLeft">&#160;</td><td class="mdescRight">Implements various mechanisms to preserve RelayState, such as cookies or StorageService-backed keys.  <a href="#a706aab1f40db95dbb72aa3e6910c905c">More...</a><br /></td></tr>
<tr class="separator:a706aab1f40db95dbb72aa3e6910c905c inherit pro_methods_a00024"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a93c03331411ecd033f6f9d118e8eea3c inherit pro_methods_a00024"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00024.html#a93c03331411ecd033f6f9d118e8eea3c">recoverRelayState</a> (const <a class="el" href="a00004.html">Application</a> &amp;application, const xmltooling::HTTPRequest &amp;request, xmltooling::HTTPResponse &amp;response, std::string &amp;relayState, bool clear=true) const </td></tr>
<tr class="memdesc:a93c03331411ecd033f6f9d118e8eea3c inherit pro_methods_a00024"><td class="mdescLeft">&#160;</td><td class="mdescRight">Implements various mechanisms to recover RelayState, such as cookies or StorageService-backed keys.  <a href="#a93c03331411ecd033f6f9d118e8eea3c">More...</a><br /></td></tr>
<tr class="separator:a93c03331411ecd033f6f9d118e8eea3c inherit pro_methods_a00024"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pro_methods_a00019"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_a00019')"><img src="closed.png" alt="-"/>&#160;Protected Member Functions inherited from <a class="el" href="a00019.html">shibsp::DOMPropertySet</a></td></tr>
<tr class="memitem:adba99745c1aeaa1adda4d9db78eaca6e inherit pro_methods_a00019"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00019.html#adba99745c1aeaa1adda4d9db78eaca6e">setProperty</a> (const char *name, const char *val, const char *ns=nullptr)</td></tr>
<tr class="memdesc:adba99745c1aeaa1adda4d9db78eaca6e inherit pro_methods_a00019"><td class="mdescLeft">&#160;</td><td class="mdescRight">Post-load injection of a property, for use by subclasses.  <a href="#adba99745c1aeaa1adda4d9db78eaca6e">More...</a><br /></td></tr>
<tr class="separator:adba99745c1aeaa1adda4d9db78eaca6e inherit pro_methods_a00019"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pro_methods_a00037"><td colspan="2" onclick="javascript:toggleInherit('pro_methods_a00037')"><img src="closed.png" alt="-"/>&#160;Protected Member Functions inherited from <a class="el" href="a00037.html">shibsp::RemotedHandler</a></td></tr>
<tr class="memitem:aac18948efb6e972cb66b0e760a43f0ad inherit pro_methods_a00037"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00037.html#aac18948efb6e972cb66b0e760a43f0ad">setAddress</a> (const char *address)</td></tr>
<tr class="memdesc:aac18948efb6e972cb66b0e760a43f0ad inherit pro_methods_a00037"><td class="mdescLeft">&#160;</td><td class="mdescRight">Establishes message remoting using the supplied address.  <a href="#aac18948efb6e972cb66b0e760a43f0ad">More...</a><br /></td></tr>
<tr class="separator:aac18948efb6e972cb66b0e760a43f0ad inherit pro_methods_a00037"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8d94cd82d849cdd655aabe78e62518aa inherit pro_methods_a00037"><td class="memItemLeft" align="right" valign="top"><a class="el" href="a00017.html">DDF</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00037.html#a8d94cd82d849cdd655aabe78e62518aa">wrap</a> (const <a class="el" href="a00053.html">SPRequest</a> &amp;request, const std::vector&lt; std::string &gt; *headers=nullptr, bool certs=false) const </td></tr>
<tr class="memdesc:a8d94cd82d849cdd655aabe78e62518aa inherit pro_methods_a00037"><td class="mdescLeft">&#160;</td><td class="mdescRight">Wraps a request by creating an outgoing data flow with the data needed to remote the request information.  <a href="#a8d94cd82d849cdd655aabe78e62518aa">More...</a><br /></td></tr>
<tr class="separator:a8d94cd82d849cdd655aabe78e62518aa inherit pro_methods_a00037"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:aaf442410ec7a01b6156415391f1bffb0 inherit pro_methods_a00037"><td class="memItemLeft" align="right" valign="top">virtual std::pair&lt; bool, long &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00037.html#aaf442410ec7a01b6156415391f1bffb0">unwrap</a> (<a class="el" href="a00053.html">SPRequest</a> &amp;request, <a class="el" href="a00017.html">DDF</a> &amp;out) const </td></tr>
<tr class="memdesc:aaf442410ec7a01b6156415391f1bffb0 inherit pro_methods_a00037"><td class="mdescLeft">&#160;</td><td class="mdescRight">Unwraps a response by examining an incoming data flow to determine whether a response was produced by the remoted handler.  <a href="#aaf442410ec7a01b6156415391f1bffb0">More...</a><br /></td></tr>
<tr class="separator:aaf442410ec7a01b6156415391f1bffb0 inherit pro_methods_a00037"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a8d0c325aed14db71c4dfd32256d6af2f inherit pro_methods_a00037"><td class="memItemLeft" align="right" valign="top">xmltooling::HTTPRequest *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00037.html#a8d0c325aed14db71c4dfd32256d6af2f">getRequest</a> (<a class="el" href="a00017.html">DDF</a> &amp;in) const </td></tr>
<tr class="memdesc:a8d0c325aed14db71c4dfd32256d6af2f inherit pro_methods_a00037"><td class="mdescLeft">&#160;</td><td class="mdescRight">Builds a new request instance around a remoted data object.  <a href="#a8d0c325aed14db71c4dfd32256d6af2f">More...</a><br /></td></tr>
<tr class="separator:a8d0c325aed14db71c4dfd32256d6af2f inherit pro_methods_a00037"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a7d825e495a333f817f5acb4cff134ebf inherit pro_methods_a00037"><td class="memItemLeft" align="right" valign="top">xmltooling::HTTPResponse *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00037.html#a7d825e495a333f817f5acb4cff134ebf">getResponse</a> (<a class="el" href="a00017.html">DDF</a> &amp;out) const </td></tr>
<tr class="memdesc:a7d825e495a333f817f5acb4cff134ebf inherit pro_methods_a00037"><td class="mdescLeft">&#160;</td><td class="mdescRight">Builds a new response instance around an outgoing data object.  <a href="#a7d825e495a333f817f5acb4cff134ebf">More...</a><br /></td></tr>
<tr class="separator:a7d825e495a333f817f5acb4cff134ebf inherit pro_methods_a00037"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="inherited"></a>
Additional Inherited Members</h2></td></tr>
<tr class="inherit_header pub_static_methods_a00037"><td colspan="2" onclick="javascript:toggleInherit('pub_static_methods_a00037')"><img src="closed.png" alt="-"/>&#160;Static Public Member Functions inherited from <a class="el" href="a00037.html">shibsp::RemotedHandler</a></td></tr>
<tr class="memitem:a7b44e9c00f515a8b5a8f05a0e19acbdb inherit pub_static_methods_a00037"><td class="memItemLeft" align="right" valign="top">static void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00037.html#a7b44e9c00f515a8b5a8f05a0e19acbdb">addRemotedHeader</a> (const char *header)</td></tr>
<tr class="memdesc:a7b44e9c00f515a8b5a8f05a0e19acbdb inherit pub_static_methods_a00037"><td class="mdescLeft">&#160;</td><td class="mdescRight">Ensures that a request header will be remoted.  <a href="#a7b44e9c00f515a8b5a8f05a0e19acbdb">More...</a><br /></td></tr>
<tr class="separator:a7b44e9c00f515a8b5a8f05a0e19acbdb inherit pub_static_methods_a00037"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pro_types_a00001"><td colspan="2" onclick="javascript:toggleInherit('pro_types_a00001')"><img src="closed.png" alt="-"/>&#160;Protected Types inherited from <a class="el" href="a00001.html">shibsp::AbstractHandler</a></td></tr>
<tr class="memitem:a6a1613af215416514575475060dcb728 inherit pro_types_a00001"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a6a1613af215416514575475060dcb728"></a>enum &#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00001.html#a6a1613af215416514575475060dcb728">PropertySourceTypes</a> { <b>HANDLER_PROPERTY_REQUEST</b> = 1, 
<b>HANDLER_PROPERTY_MAP</b> = 2, 
<b>HANDLER_PROPERTY_FIXED</b> = 4, 
<b>HANDLER_PROPERTY_ALL</b> = 255
 }</td></tr>
<tr class="memdesc:a6a1613af215416514575475060dcb728"><td class="mdescLeft">&#160;</td><td class="mdescRight">Bitmask of property sources to read from (request query parameter, request mapper, fixed handler property). <br /></td></tr>
<tr class="separator:a6a1613af215416514575475060dcb728 inherit pro_types_a00001"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pro_attribs_a00001"><td colspan="2" onclick="javascript:toggleInherit('pro_attribs_a00001')"><img src="closed.png" alt="-"/>&#160;Protected Attributes inherited from <a class="el" href="a00001.html">shibsp::AbstractHandler</a></td></tr>
<tr class="memitem:a62494104137a133e288e74a5291c5945 inherit pro_attribs_a00001"><td class="memItemLeft" align="right" valign="top">xmltooling::logging::Category &amp;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00001.html#a62494104137a133e288e74a5291c5945">m_log</a></td></tr>
<tr class="memdesc:a62494104137a133e288e74a5291c5945 inherit pro_attribs_a00001"><td class="mdescLeft">&#160;</td><td class="mdescRight">Logging object.  <a href="#a62494104137a133e288e74a5291c5945">More...</a><br /></td></tr>
<tr class="separator:a62494104137a133e288e74a5291c5945 inherit pro_attribs_a00001"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="memitem:a1798016142689feb354214ae0e061fbb inherit pro_attribs_a00001"><td class="memItemLeft" align="right" valign="top">xmltooling::auto_ptr_char&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00001.html#a1798016142689feb354214ae0e061fbb">m_configNS</a></td></tr>
<tr class="memdesc:a1798016142689feb354214ae0e061fbb inherit pro_attribs_a00001"><td class="mdescLeft">&#160;</td><td class="mdescRight">Configuration namespace for custom properties.  <a href="#a1798016142689feb354214ae0e061fbb">More...</a><br /></td></tr>
<tr class="separator:a1798016142689feb354214ae0e061fbb inherit pro_attribs_a00001"><td class="memSeparator" colspan="2">&#160;</td></tr>
<tr class="inherit_header pro_attribs_a00037"><td colspan="2" onclick="javascript:toggleInherit('pro_attribs_a00037')"><img src="closed.png" alt="-"/>&#160;Protected Attributes inherited from <a class="el" href="a00037.html">shibsp::RemotedHandler</a></td></tr>
<tr class="memitem:a6ca6ec117a8ca16e06500a4929197d18 inherit pro_attribs_a00037"><td class="memItemLeft" align="right" valign="top">std::string&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="a00037.html#a6ca6ec117a8ca16e06500a4929197d18">m_address</a></td></tr>
<tr class="memdesc:a6ca6ec117a8ca16e06500a4929197d18 inherit pro_attribs_a00037"><td class="mdescLeft">&#160;</td><td class="mdescRight">Message address for remote half.  <a href="#a6ca6ec117a8ca16e06500a4929197d18">More...</a><br /></td></tr>
<tr class="separator:a6ca6ec117a8ca16e06500a4929197d18 inherit pro_attribs_a00037"><td class="memSeparator" colspan="2">&#160;</td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p>Base class for handlers that create sessions by consuming SSO protocol responses. </p>
</div><h2 class="groupheader">Constructor &amp; Destructor Documentation</h2>
<a class="anchor" id="a37e189b7c0109acd531ef0f191e7e032"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">shibsp::AssertionConsumerService::AssertionConsumerService </td>
          <td>(</td>
          <td class="paramtype">const xercesc::DOMElement *&#160;</td>
          <td class="paramname"><em>e</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const char *&#160;</td>
          <td class="paramname"><em>appId</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">xmltooling::logging::Category &amp;&#160;</td>
          <td class="paramname"><em>log</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">xercesc::DOMNodeFilter *&#160;</td>
          <td class="paramname"><em>filter</em> = <code>nullptr</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const std::map&lt; std::string, std::string &gt; *&#160;</td>
          <td class="paramname"><em>remapper</em> = <code>nullptr</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Constructor. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">e</td><td>root of DOM configuration </td></tr>
    <tr><td class="paramname">appId</td><td>ID of application that "owns" the handler </td></tr>
    <tr><td class="paramname">log</td><td>a logging object to use </td></tr>
    <tr><td class="paramname">filter</td><td>optional filter controls what child elements to include as nested PropertySets </td></tr>
    <tr><td class="paramname">remapper</td><td>optional map of property rename rules for legacy property support </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<h2 class="groupheader">Member Function Documentation</h2>
<a class="anchor" id="a172f87cae64bc0ddb08e4ed7d95d549a"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">void shibsp::AssertionConsumerService::checkAddress </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="a00004.html">Application</a> &amp;&#160;</td>
          <td class="paramname"><em>application</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const xmltooling::HTTPRequest &amp;&#160;</td>
          <td class="paramname"><em>httpRequest</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const char *&#160;</td>
          <td class="paramname"><em>issuedTo</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Enforce address checking requirements. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">application</td><td>reference to application receiving message </td></tr>
    <tr><td class="paramname">httpRequest</td><td>client request that initiated session </td></tr>
    <tr><td class="paramname">issuedTo</td><td>address for which security assertion was issued </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a5a70db7238d35d567f3054b6815b9ee4"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual opensaml::SecurityPolicy* shibsp::AssertionConsumerService::createSecurityPolicy </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="a00004.html">Application</a> &amp;&#160;</td>
          <td class="paramname"><em>application</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const xmltooling::QName *&#160;</td>
          <td class="paramname"><em>role</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>validate</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const char *&#160;</td>
          <td class="paramname"><em>policyId</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">
<dl class="deprecated"><dt><b><a class="el" href="a00134.html#_deprecated000006">Deprecated:</a></b></dt><dd>Returns a <a class="el" href="a00042.html" title="SP-specific SecurityPolicy subclass. ">SecurityPolicy</a> instance to use for an incoming request.</dd></dl>
<p>Allows handlers to customize the type of policy object their policy rules might require. </p>
<p>The caller <b>MUST</b> lock the application's MetadataProvider for the life of the returned object.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">application</td><td>reference to application receiving message </td></tr>
    <tr><td class="paramname">role</td><td>identifies the role (generally IdP or SP) of the policy peer </td></tr>
    <tr><td class="paramname">validate</td><td>true iff XML parsing should be done with validation </td></tr>
    <tr><td class="paramname">policyId</td><td>identifies policy rules to auto-attach, defaults to the application's set </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>a new policy instance, which the caller is responsible for freeing </dd></dl>

</div>
</div>
<a class="anchor" id="acc9401cda3c16e153116136721d67e9e"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual void shibsp::AssertionConsumerService::extractMessageDetails </td>
          <td>(</td>
          <td class="paramtype">const opensaml::Assertion &amp;&#160;</td>
          <td class="paramname"><em>assertion</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const XMLCh *&#160;</td>
          <td class="paramname"><em>protocol</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">opensaml::SecurityPolicy &amp;&#160;</td>
          <td class="paramname"><em>policy</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Extracts policy-relevant assertion details. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">assertion</td><td>the incoming assertion </td></tr>
    <tr><td class="paramname">protocol</td><td>the protocol family in use </td></tr>
    <tr><td class="paramname">policy</td><td><a class="el" href="a00042.html" title="SP-specific SecurityPolicy subclass. ">SecurityPolicy</a> to provide various components and track message data </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="ac9f44c621d81ca3c2f52593a19fce9de"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual std::pair&lt;bool,long&gt; shibsp::AssertionConsumerService::finalizeResponse </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="a00004.html">Application</a> &amp;&#160;</td>
          <td class="paramname"><em>application</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const xmltooling::HTTPRequest &amp;&#160;</td>
          <td class="paramname"><em>httpRequest</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">xmltooling::HTTPResponse &amp;&#160;</td>
          <td class="paramname"><em>httpResponse</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">std::string &amp;&#160;</td>
          <td class="paramname"><em>relayState</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Complete the client's transition back to the expected resource. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">application</td><td>reference to application receiving message </td></tr>
    <tr><td class="paramname">httpRequest</td><td>client request that included message </td></tr>
    <tr><td class="paramname">httpResponse</td><td>response to client </td></tr>
    <tr><td class="paramname">relayState</td><td>relay state token </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="addceeeaf0104cd9ce607df3268b25c02"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">void shibsp::AssertionConsumerService::generateMetadata </td>
          <td>(</td>
          <td class="paramtype">opensaml::saml2md::SPSSODescriptor &amp;&#160;</td>
          <td class="paramname"><em>role</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const char *&#160;</td>
          <td class="paramname"><em>handlerURL</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Generates and/or modifies metadata reflecting the <a class="el" href="a00024.html" title="Pluggable runtime functionality that implement protocols and services. ">Handler</a>. </p>
<p>The default implementation does nothing.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">role</td><td>metadata role to decorate </td></tr>
    <tr><td class="paramname">handlerURL</td><td>base location of handler's endpoint </td></tr>
  </table>
  </dd>
</dl>

<p>Reimplemented from <a class="el" href="a00024.html#a5cab4d84f3b4ba8a7c5d2c645bf236bc">shibsp::Handler</a>.</p>

</div>
</div>
<a class="anchor" id="a23090937be0811c98b9044ae26673ede"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const XMLCh* shibsp::AssertionConsumerService::getProtocolFamily </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Returns an identifier for the protocol family associated with the handler, if any. </p>
<dl class="section return"><dt>Returns</dt><dd>a protocol identifier, or nullptr </dd></dl>

<p>Reimplemented from <a class="el" href="a00024.html#ae4ee079fa0ddab026383ff95ae521390">shibsp::Handler</a>.</p>

</div>
</div>
<a class="anchor" id="aab806f610a434fb0aecec8a7069f4ad2"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">const char* shibsp::AssertionConsumerService::getType </td>
          <td>(</td>
          <td class="paramname"></td><td>)</td>
          <td> const</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Returns the "type" of the <a class="el" href="a00024.html" title="Pluggable runtime functionality that implement protocols and services. ">Handler</a> plugin. </p>
<dl class="section return"><dt>Returns</dt><dd>a <a class="el" href="a00024.html" title="Pluggable runtime functionality that implement protocols and services. ">Handler</a> type </dd></dl>

<p>Reimplemented from <a class="el" href="a00024.html#a758202b21a519e66f26d0b786dda89c3">shibsp::Handler</a>.</p>

</div>
</div>
<a class="anchor" id="a5c12f8ce09b000d3213d97f2bac4eb64"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual void shibsp::AssertionConsumerService::implementProtocol </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="a00004.html">Application</a> &amp;&#160;</td>
          <td class="paramname"><em>application</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const xmltooling::HTTPRequest &amp;&#160;</td>
          <td class="paramname"><em>httpRequest</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">xmltooling::HTTPResponse &amp;&#160;</td>
          <td class="paramname"><em>httpResponse</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">opensaml::SecurityPolicy &amp;&#160;</td>
          <td class="paramname"><em>policy</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const <a class="el" href="a00034.html">PropertySet</a> *&#160;</td>
          <td class="paramname"><em>reserved</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const xmltooling::XMLObject &amp;&#160;</td>
          <td class="paramname"><em>xmlObject</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">pure virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Implement protocol-specific handling of the incoming decoded message. </p>
<p>The result of implementing the protocol should be an exception or modifications to the request/response objects to reflect processing of the message.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">application</td><td>reference to application receiving message </td></tr>
    <tr><td class="paramname">httpRequest</td><td>client request that included message </td></tr>
    <tr><td class="paramname">httpResponse</td><td>response to client </td></tr>
    <tr><td class="paramname">policy</td><td>the <a class="el" href="a00042.html" title="SP-specific SecurityPolicy subclass. ">SecurityPolicy</a> in effect, after having evaluated the message </td></tr>
    <tr><td class="paramname">reserved</td><td>ignore this parameter </td></tr>
    <tr><td class="paramname">xmlObject</td><td>a protocol-specific message object </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a6b8b561928a0a7dd188a1f86e5363d62"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">virtual <a class="el" href="a00027.html">LoginEvent</a>* shibsp::AssertionConsumerService::newLoginEvent </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="a00004.html">Application</a> &amp;&#160;</td>
          <td class="paramname"><em>application</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const xmltooling::HTTPRequest &amp;&#160;</td>
          <td class="paramname"><em>request</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Creates a new <a class="el" href="a00012.html">AuthnRequestEvent</a> for the event log. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">application</td><td>the <a class="el" href="a00004.html" title="Interface to a Shibboleth Application instance. ">Application</a> associated with the event </td></tr>
    <tr><td class="paramname">request</td><td>the HTTP client request associated with the event </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>a fresh <a class="el" href="a00027.html">LoginEvent</a>, prepopulated by the input parameters, or nullptr if an error occurs </dd></dl>

</div>
</div>
<a class="anchor" id="ae1e3728a3637f9e05af1bade7faa0209"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">void shibsp::AssertionConsumerService::receive </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="a00017.html">DDF</a> &amp;&#160;</td>
          <td class="paramname"><em>in</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">std::ostream &amp;&#160;</td>
          <td class="paramname"><em>out</em>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td></td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p><a class="el" href="a00036.html" title="Interface to a remoted service. ">Remoted</a> classes implement this method to process incoming messages. </p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">in</td><td>incoming <a class="el" href="a00017.html" title="DDF objects are implemented with a handle-body idiom and require explicit destruction in order to all...">DDF</a> message </td></tr>
    <tr><td class="paramname">out</td><td>stream to write outgoing <a class="el" href="a00017.html" title="DDF objects are implemented with a handle-body idiom and require explicit destruction in order to all...">DDF</a> message to </td></tr>
  </table>
  </dd>
</dl>

<p>Implements <a class="el" href="a00036.html#a87f430a65ba4474d2708b48007221055">shibsp::Remoted</a>.</p>

</div>
</div>
<a class="anchor" id="aa629221fce8fb40cbfa6c03535637547"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="a00039.html">ResolutionContext</a>* shibsp::AssertionConsumerService::resolveAttributes </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="a00004.html">Application</a> &amp;&#160;</td>
          <td class="paramname"><em>application</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const opensaml::saml2md::RoleDescriptor *&#160;</td>
          <td class="paramname"><em>issuer</em> = <code>nullptr</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const XMLCh *&#160;</td>
          <td class="paramname"><em>protocol</em> = <code>nullptr</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const opensaml::saml1::NameIdentifier *&#160;</td>
          <td class="paramname"><em>v1nameid</em> = <code>nullptr</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const opensaml::saml2::NameID *&#160;</td>
          <td class="paramname"><em>nameid</em> = <code>nullptr</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const XMLCh *&#160;</td>
          <td class="paramname"><em>authncontext_class</em> = <code>nullptr</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const XMLCh *&#160;</td>
          <td class="paramname"><em>authncontext_decl</em> = <code>nullptr</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const std::vector&lt; const opensaml::Assertion * &gt; *&#160;</td>
          <td class="paramname"><em>tokens</em> = <code>nullptr</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">
<dl class="deprecated"><dt><b><a class="el" href="a00134.html#_deprecated000007">Deprecated:</a></b></dt><dd>Attempt SSO-initiated attribute resolution using the supplied information, including NameID and token extraction and filtering followed by secondary resolution.</dd></dl>
<p>The caller must free the returned context handle.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">application</td><td>reference to application receiving message </td></tr>
    <tr><td class="paramname">issuer</td><td>source of SSO tokens </td></tr>
    <tr><td class="paramname">protocol</td><td>SSO protocol used </td></tr>
    <tr><td class="paramname">v1nameid</td><td>identifier of principal in SAML 1.x form, if any </td></tr>
    <tr><td class="paramname">nameid</td><td>identifier of principal in SAML 2.0 form </td></tr>
    <tr><td class="paramname">authncontext_class</td><td>method/category of authentication event, if known </td></tr>
    <tr><td class="paramname">authncontext_decl</td><td>specifics of authentication event, if known </td></tr>
    <tr><td class="paramname">tokens</td><td>available assertions, if any </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a6e43cc6a64afe694e2b64a5a733c2d5d"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname"><a class="el" href="a00039.html">ResolutionContext</a>* shibsp::AssertionConsumerService::resolveAttributes </td>
          <td>(</td>
          <td class="paramtype">const <a class="el" href="a00004.html">Application</a> &amp;&#160;</td>
          <td class="paramname"><em>application</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const xmltooling::GenericRequest *&#160;</td>
          <td class="paramname"><em>request</em> = <code>nullptr</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const opensaml::saml2md::RoleDescriptor *&#160;</td>
          <td class="paramname"><em>issuer</em> = <code>nullptr</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const XMLCh *&#160;</td>
          <td class="paramname"><em>protocol</em> = <code>nullptr</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const xmltooling::XMLObject *&#160;</td>
          <td class="paramname"><em>protmsg</em> = <code>nullptr</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const opensaml::saml1::NameIdentifier *&#160;</td>
          <td class="paramname"><em>v1nameid</em> = <code>nullptr</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const opensaml::saml1::AuthenticationStatement *&#160;</td>
          <td class="paramname"><em>v1statement</em> = <code>nullptr</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const opensaml::saml2::NameID *&#160;</td>
          <td class="paramname"><em>nameid</em> = <code>nullptr</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const opensaml::saml2::AuthnStatement *&#160;</td>
          <td class="paramname"><em>statement</em> = <code>nullptr</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const XMLCh *&#160;</td>
          <td class="paramname"><em>authncontext_class</em> = <code>nullptr</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const XMLCh *&#160;</td>
          <td class="paramname"><em>authncontext_decl</em> = <code>nullptr</code>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">const std::vector&lt; const opensaml::Assertion * &gt; *&#160;</td>
          <td class="paramname"><em>tokens</em> = <code>nullptr</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">protected</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Attempt SSO-initiated attribute resolution using the supplied information, including NameID and token extraction and filtering followed by secondary resolution. </p>
<p>The caller must free the returned context handle.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">application</td><td>reference to application receiving message </td></tr>
    <tr><td class="paramname">request</td><td>request delivering message, if any </td></tr>
    <tr><td class="paramname">issuer</td><td>source of SSO tokens </td></tr>
    <tr><td class="paramname">protocol</td><td>SSO protocol used </td></tr>
    <tr><td class="paramname">protmsg</td><td>SSO protocol message, if any </td></tr>
    <tr><td class="paramname">v1nameid</td><td>identifier of principal in SAML 1.x form, if any </td></tr>
    <tr><td class="paramname">v1statement</td><td>SAML 1.x authentication statement, if any </td></tr>
    <tr><td class="paramname">nameid</td><td>identifier of principal in SAML 2.0 form </td></tr>
    <tr><td class="paramname">statement</td><td>SAML 2.0 authentication statement, if any </td></tr>
    <tr><td class="paramname">authncontext_class</td><td>method/category of authentication event, if known </td></tr>
    <tr><td class="paramname">authncontext_decl</td><td>specifics of authentication event, if known </td></tr>
    <tr><td class="paramname">tokens</td><td>available assertions, if any </td></tr>
  </table>
  </dd>
</dl>

</div>
</div>
<a class="anchor" id="a27e9f94bc348fd7d0c71b7504fca59d9"></a>
<div class="memitem">
<div class="memproto">
<table class="mlabels">
  <tr>
  <td class="mlabels-left">
      <table class="memname">
        <tr>
          <td class="memname">std::pair&lt;bool,long&gt; shibsp::AssertionConsumerService::run </td>
          <td>(</td>
          <td class="paramtype"><a class="el" href="a00053.html">SPRequest</a> &amp;&#160;</td>
          <td class="paramname"><em>request</em>, </td>
        </tr>
        <tr>
          <td class="paramkey"></td>
          <td></td>
          <td class="paramtype">bool&#160;</td>
          <td class="paramname"><em>isHandler</em> = <code>true</code>&#160;</td>
        </tr>
        <tr>
          <td></td>
          <td>)</td>
          <td></td><td> const</td>
        </tr>
      </table>
  </td>
  <td class="mlabels-right">
<span class="mlabels"><span class="mlabel">virtual</span></span>  </td>
  </tr>
</table>
</div><div class="memdoc">

<p>Executes handler functionality as an incoming request. </p>
<p>Handlers can be run either directly by incoming web requests or indirectly/implicitly during other SP processing.</p>
<dl class="params"><dt>Parameters</dt><dd>
  <table class="params">
    <tr><td class="paramname">request</td><td>SP request context </td></tr>
    <tr><td class="paramname">isHandler</td><td>true iff executing in the context of a direct handler invocation </td></tr>
  </table>
  </dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>a pair containing a "request completed" indicator and a server-specific response code </dd></dl>

<p>Implements <a class="el" href="a00024.html#a8c31d112d1dceeb50cab16aa7d6b3294">shibsp::Handler</a>.</p>

</div>
</div>
<hr/>The documentation for this class was generated from the following file:<ul>
<li>shibsp/handler/<a class="el" href="a00086.html">AssertionConsumerService.h</a></li>
</ul>
</div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
  <ul>
    <li class="navelem"><a class="el" href="a00127.html">shibsp</a></li><li class="navelem"><a class="el" href="a00006.html">AssertionConsumerService</a></li>
    <li class="footer">Generated by
    <a href="http://www.doxygen.org/index.html">
    <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.9.1 </li>
  </ul>
</div>
</body>
</html>