summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrederic Peters <fpeters@entrouvert.com>2005-01-21 21:22:29 +0000
committerFrederic Peters <fpeters@entrouvert.com>2005-01-21 21:22:29 +0000
commitc9038ca0d54be8a590f6bd5436130bdfae6dbb45 (patch)
tree917170c626542c4c99b63d9e8fefcd534cf58e3f
parentb01a634664de4460fea325114c5bc118921ae33c (diff)
downloadlasso-c9038ca0d54be8a590f6bd5436130bdfae6dbb45.tar.gz
lasso-c9038ca0d54be8a590f6bd5436130bdfae6dbb45.tar.xz
lasso-c9038ca0d54be8a590f6bd5436130bdfae6dbb45.zip
reordered lib:authnRequest elements
-rw-r--r--lasso/xml/lib_authn_request.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lasso/xml/lib_authn_request.c b/lasso/xml/lib_authn_request.c
index 6444c57f..bbc3a840 100644
--- a/lasso/xml/lib_authn_request.c
+++ b/lasso/xml/lib_authn_request.c
@@ -90,6 +90,10 @@ static struct XmlSnippet schema_snippets[] = {
{ "ProviderID", SNIPPET_CONTENT, G_STRUCT_OFFSET(LassoLibAuthnRequest, ProviderID) },
{ "AffiliationID", SNIPPET_CONTENT, G_STRUCT_OFFSET(LassoLibAuthnRequest, AffiliationID) },
{ "NameIDPolicy", SNIPPET_CONTENT, G_STRUCT_OFFSET(LassoLibAuthnRequest, NameIDPolicy) },
+ { "ForceAuthn", SNIPPET_CONTENT | SNIPPET_BOOLEAN,
+ G_STRUCT_OFFSET(LassoLibAuthnRequest, ForceAuthn) },
+ { "IsPassive", SNIPPET_CONTENT | SNIPPET_BOOLEAN,
+ G_STRUCT_OFFSET(LassoLibAuthnRequest, IsPassive) },
{ "ProtocolProfile", SNIPPET_CONTENT,
G_STRUCT_OFFSET(LassoLibAuthnRequest, ProtocolProfile) },
{ "AssertionConsumerServiceID", SNIPPET_CONTENT,
@@ -97,10 +101,6 @@ static struct XmlSnippet schema_snippets[] = {
{ "RequestAuthnContext", SNIPPET_NODE,
G_STRUCT_OFFSET(LassoLibAuthnRequest, RequestAuthnContext) },
{ "RelayState", SNIPPET_CONTENT, G_STRUCT_OFFSET(LassoLibAuthnRequest, RelayState) },
- { "ForceAuthn", SNIPPET_CONTENT | SNIPPET_BOOLEAN,
- G_STRUCT_OFFSET(LassoLibAuthnRequest, ForceAuthn) },
- { "IsPassive", SNIPPET_CONTENT | SNIPPET_BOOLEAN,
- G_STRUCT_OFFSET(LassoLibAuthnRequest, IsPassive) },
{ "Scoping", SNIPPET_NODE, G_STRUCT_OFFSET(LassoLibAuthnRequest, Scoping) },
{ "consent", SNIPPET_ATTRIBUTE, G_STRUCT_OFFSET(LassoLibAuthnRequest, consent) },
{ NULL, 0, 0}