summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivan <ivan@grnet.gr>2017-07-28 17:59:01 +0300
committerivan <ivan@grnet.gr>2017-07-31 18:50:31 +0300
commit5ca4fb0ec9aa3c4ed77717a022b43357df3db252 (patch)
tree9f8c27f85859c989902d48a66911c2455a5ebd9a
parent9a8077a32f5c3b7f698c2669c464bddd08e85f37 (diff)
downloadpysaml2-5ca4fb0ec9aa3c4ed77717a022b43357df3db252.tar.gz
Add documentation for sp_type and sp_type_in_metadata configuration options
-rw-r--r--doc/howto/config.rst36
1 files changed, 36 insertions, 0 deletions
diff --git a/doc/howto/config.rst b/doc/howto/config.rst
index 1769bab3..95e9a726 100644
--- a/doc/howto/config.rst
+++ b/doc/howto/config.rst
@@ -475,6 +475,42 @@ This kind of functionality is required for the eIDAS SAML profile
This is relevant only for the eIDAS SAML profile.
+sp_type
+"""""""
+
+Sets the value for the eIDAS SPType node. By the eIDAS specification the value
+can be one of *public* and *private*.
+
+Example::
+
+ "service": {
+ "sp": {
+ "sp_type": "private",
+ }
+ }
+
+.. note::
+ This is relevant only for the eIDAS SAML profile.
+
+
+sp_type_in_metadata
+"""""""""""""""""""
+
+Whether the SPType node should appear in the metadata document
+or as part of each AuthnRequest.
+
+Example::
+
+ "service": {
+ "sp": {
+ "sp_type_in_metadata": True,
+ }
+ }
+
+.. note::
+ This is relevant only for the eIDAS SAML profile.
+
+
idp
"""