| Lasso Reference Manual | ||||
|---|---|---|---|---|
#include <lasso/lasso.h>
LassoSamlp2RequestedAuthnContext;
LassoNode* lasso_samlp2_requested_authn_context_new
(void);
Figure 80. Schema fragment for samlp2:RequestedAuthnContext
<complexType name="RequestedAuthnContextType">
<choice>
<element ref="saml:AuthnContextClassRef" maxOccurs="unbounded"/>
<element ref="saml:AuthnContextDeclRef" maxOccurs="unbounded"/>
</choice>
<attribute name="Comparison" type="samlp:AuthnContextComparisonType" use="optional"/>
</complexType>
typedef struct {
LassoNode parent;
/* elements */
GList *AuthnContextClassRef; /* of strings */
GList *AuthnContextDeclRef; /* of strings */
/* attributes */
char *Comparison;
} LassoSamlp2RequestedAuthnContext;
LassoNode* lasso_samlp2_requested_authn_context_new (void);
Creates a new LassoSamlp2RequestedAuthnContext object.
| Returns : | a newly created LassoSamlp2RequestedAuthnContext object |