Element returns an etree.Element representing the object in XML form.
()
| 1032 | |
| 1033 | // Element returns an etree.Element representing the object in XML form. |
| 1034 | func (a *Audience) Element() *etree.Element { |
| 1035 | el := etree.NewElement("saml:Audience") |
| 1036 | el.SetText(a.Value) |
| 1037 | return el |
| 1038 | } |
| 1039 | |
| 1040 | // OneTimeUse represents the SAML element OneTimeUse. |
| 1041 | // |
nothing calls this directly
no outgoing calls
no test coverage detected