RequestedAuthnContext represents the SAML object of the same name, an indication of the requirements on the authentication process.
| 14 | // RequestedAuthnContext represents the SAML object of the same name, an indication of the |
| 15 | // requirements on the authentication process. |
| 16 | type RequestedAuthnContext struct { |
| 17 | XMLName xml.Name `xml:"urn:oasis:names:tc:SAML:2.0:protocol RequestedAuthnContext"` |
| 18 | Comparison string `xml:",attr"` |
| 19 | AuthnContextClassRef string `xml:"urn:oasis:names:tc:SAML:2.0:assertion AuthnContextClassRef"` |
| 20 | } |
| 21 | |
| 22 | // Element returns an etree.Element representing the object in XML form. |
| 23 | func (r *RequestedAuthnContext) Element() *etree.Element { |
nothing calls this directly
no outgoing calls
no test coverage detected