![]() |
![]() |
![]() |
Lasso Reference Manual | ![]() |
---|---|---|---|---|
Top | Description |
Figure 50. Schema fragment for saml2:AuthnStatement
<complexType name="AuthnStatementType"> <complexContent> <extension base="saml:StatementAbstractType"> <sequence> <element ref="saml:SubjectLocality" minOccurs="0"/> <element ref="saml:AuthnContext"/> </sequence> <attribute name="AuthnInstant" type="dateTime" use="required"/> <attribute name="SessionIndex" type="string" use="optional"/> <attribute name="SessionNotOnOrAfter" type="dateTime" use="optional"/> </extension> </complexContent> </complexType>
struct LassoSaml2AuthnStatement { LassoSaml2StatementAbstract parent; /* elements */ LassoSaml2SubjectLocality *SubjectLocality; LassoSaml2AuthnContext *AuthnContext; /* attributes */ char *AuthnInstant; char *SessionIndex; char *SessionNotOnOrAfter; };
LassoNode * lasso_saml2_authn_statement_new (void
);
Creates a new LassoSaml2AuthnStatement object.
Returns : |
a newly created LassoSaml2AuthnStatement object |