summaryrefslogtreecommitdiffstats
path: root/lasso/xml/lib_authn_response_envelope.c
diff options
context:
space:
mode:
Diffstat (limited to 'lasso/xml/lib_authn_response_envelope.c')
-rw-r--r--lasso/xml/lib_authn_response_envelope.c52
1 files changed, 13 insertions, 39 deletions
diff --git a/lasso/xml/lib_authn_response_envelope.c b/lasso/xml/lib_authn_response_envelope.c
index 11a803be..d84998b6 100644
--- a/lasso/xml/lib_authn_response_envelope.c
+++ b/lasso/xml/lib_authn_response_envelope.c
@@ -31,42 +31,13 @@
/* private methods */
/*****************************************************************************/
-#define snippets() \
- LassoLibAuthnResponseEnvelope *env = LASSO_LIB_AUTHN_RESPONSE_ENVELOPE(node); \
- struct XmlSnippet snippets[] = { \
- /* Extension */ \
- { "AuthnResponse", SNIPPET_NODE, (void**)&(env->AuthnResponse) }, \
- { "AssertionConsumerServiceURL", SNIPPET_CONTENT, \
- (void**)&(env->AssertionConsumerServiceURL) }, \
- { NULL, 0, NULL} \
- };
-
-static LassoNodeClass *parent_class = NULL;
-
-static xmlNode*
-get_xmlNode(LassoNode *node)
-{
- xmlNode *xmlnode;
- snippets();
-
- xmlnode = xmlNewNode(NULL, "AuthnResponseEnvelope");
- xmlSetNs(xmlnode, xmlNewNs(xmlnode, LASSO_LIB_HREF, LASSO_LIB_PREFIX));
- build_xml_with_snippets(xmlnode, snippets);
-
- return xmlnode;
-}
-
-static int
-init_from_xml(LassoNode *node, xmlNode *xmlnode)
-{
- snippets();
-
- if (parent_class->init_from_xml(node, xmlnode))
- return 1;
- init_xml_with_snippets(xmlnode, snippets);
- return 0;
-}
-
+static struct XmlSnippet schema_snippets[] = {
+ { "AuthnResponse", SNIPPET_NODE,
+ G_STRUCT_OFFSET(LassoLibAuthnResponseEnvelope, AuthnResponse) },
+ { "AssertionConsumerServiceURL", SNIPPET_CONTENT,
+ G_STRUCT_OFFSET(LassoLibAuthnResponseEnvelope, AssertionConsumerServiceURL) },
+ { NULL, 0, 0}
+};
/*****************************************************************************/
/* instance and class init functions */
@@ -83,9 +54,12 @@ instance_init(LassoLibAuthnResponseEnvelope *node)
static void
class_init(LassoLibAuthnResponseEnvelopeClass *klass)
{
- parent_class = g_type_class_peek_parent(klass);
- LASSO_NODE_CLASS(klass)->get_xmlNode = get_xmlNode;
- LASSO_NODE_CLASS(klass)->init_from_xml = init_from_xml;
+ LassoNodeClass *nclass = LASSO_NODE_CLASS(klass);
+
+ nclass->node_data = g_new0(LassoNodeClassData, 1);
+ lasso_node_class_set_nodename(nclass, "AuthnResponseEnvelope");
+ lasso_node_class_set_ns(nclass, LASSO_LIB_HREF, LASSO_LIB_PREFIX);
+ lasso_node_class_add_snippets(nclass, schema_snippets);
}
GType