Element returns an etree.Element representing the object in XML form.
()
| 1176 | |
| 1177 | // Element returns an etree.Element representing the object in XML form. |
| 1178 | func (a *AuthnContextClassRef) Element() *etree.Element { |
| 1179 | el := etree.NewElement("saml:AuthnContextClassRef") |
| 1180 | el.SetText(a.Value) |
| 1181 | return el |
| 1182 | } |
| 1183 | |
| 1184 | // AttributeStatement represents the SAML element AttributeStatement. |
| 1185 | // |
nothing calls this directly
no outgoing calls
no test coverage detected