summaryrefslogtreecommitdiffstats
path: root/lasso/xml/saml_attribute.c
diff options
context:
space:
mode:
authorFrederic Peters <fpeters@entrouvert.com>2004-12-02 14:54:43 +0000
committerFrederic Peters <fpeters@entrouvert.com>2004-12-02 14:54:43 +0000
commit05577f56728d3fbae3f484e37e1202d6676b38e2 (patch)
tree4979b780ebce2fd4eb3a1691661b3ea89402e89e /lasso/xml/saml_attribute.c
parent169b16b94fc7a581b182307a610b91b1d944d0ae (diff)
downloadlasso-05577f56728d3fbae3f484e37e1202d6676b38e2.tar.gz
lasso-05577f56728d3fbae3f484e37e1202d6676b38e2.tar.xz
lasso-05577f56728d3fbae3f484e37e1202d6676b38e2.zip
last(?) iteration on XmlSnippet; now attached to classes, get_xmlNode and
init_from_xml are no longer necessary in many cases. Previous XmlSnippet renamed to XmlSnippetObsolete to keep compatibility (id-wsf classes have not yet been converted).
Diffstat (limited to 'lasso/xml/saml_attribute.c')
-rw-r--r--lasso/xml/saml_attribute.c34
1 files changed, 11 insertions, 23 deletions
diff --git a/lasso/xml/saml_attribute.c b/lasso/xml/saml_attribute.c
index 449d3928..33b19d7c 100644
--- a/lasso/xml/saml_attribute.c
+++ b/lasso/xml/saml_attribute.c
@@ -58,27 +58,11 @@
/* private methods */
/*****************************************************************************/
-#define snippets() \
- LassoSamlAttribute *attribute = LASSO_SAML_ATTRIBUTE(node); \
- struct XmlSnippet snippets[] = { \
- { "AttributeValue", SNIPPET_LIST_NODES, (void**)&(attribute->AttributeValue) }, \
- { NULL, 0, NULL} \
- };
-
-static LassoNodeClass *parent_class = NULL;
-
-static xmlNode*
-get_xmlNode(LassoNode *node)
-{
- xmlNode *xmlnode;
- snippets();
-
- xmlnode = parent_class->get_xmlNode(node);
- xmlNodeSetName(xmlnode, "Attribute");
- build_xml_with_snippets(xmlnode, snippets);
-
- return xmlnode;
-}
+static struct XmlSnippet schema_snippets[] = {
+ { "AttributeValue", SNIPPET_LIST_NODES,
+ G_STRUCT_OFFSET(LassoSamlAttribute, AttributeValue) },
+ { NULL, 0, 0}
+};
/*****************************************************************************/
/* instance and class init functions */
@@ -93,8 +77,12 @@ instance_init(LassoSamlAttribute *node)
static void
class_init(LassoSamlAttributeClass *klass)
{
- parent_class = g_type_class_peek_parent(klass);
- LASSO_NODE_CLASS(klass)->get_xmlNode = get_xmlNode;
+ LassoNodeClass *nclass = LASSO_NODE_CLASS(klass);
+
+ nclass->node_data = g_new0(LassoNodeClassData, 1);
+ lasso_node_class_set_nodename(nclass, "Attribute");
+ lasso_node_class_set_ns(nclass, LASSO_SAML_ASSERTION_HREF, LASSO_SAML_ASSERTION_PREFIX);
+ lasso_node_class_add_snippets(nclass, schema_snippets);
}
GType