Element returns an etree.Element representing the object in XML form.
()
| 701 | |
| 702 | // Element returns an etree.Element representing the object in XML form. |
| 703 | func (sm StatusMessage) Element() *etree.Element { |
| 704 | el := etree.NewElement("samlp:StatusMessage") |
| 705 | el.SetText(sm.Value) |
| 706 | return el |
| 707 | } |
| 708 | |
| 709 | // StatusDetail represents the SAML element StatusDetail. |
| 710 | // |
nothing calls this directly
no outgoing calls
no test coverage detected