MCPcopy Create free account
hub / github.com/crewjam/saml / Element

Method Element

schema.go:717–723  ·  view source on GitHub ↗

Element returns an etree.Element representing the object in XML form.

()

Source from the content-addressed store, hash-verified

715
716// Element returns an etree.Element representing the object in XML form.
717func (sm StatusDetail) Element() *etree.Element {
718 el := etree.NewElement("samlp:StatusDetail")
719 for _, child := range sm.Children {
720 el.AddChild(child)
721 }
722 return el
723}
724
725// Assertion represents the SAML element Assertion.
726//

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected