~ubuntu-branches/ubuntu/intrepid/lasso/intrepid-updates

« back to all changes in this revision

Viewing changes to lasso/xml/saml-2.0/samlp2_attribute_query.c

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2006-07-11 10:01:32 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20060711100132-e50ymjc54bsizza6
Tags: 0.6.5-2ubuntu1
* Synchronize with Debian unstable.
* Convert to updated Python policy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $Id: samlp2_attribute_query.c,v 1.2 2005/11/21 18:51:52 fpeters Exp $ 
 
2
 *
 
3
 * Lasso - A free implementation of the Liberty Alliance specifications.
 
4
 *
 
5
 * Copyright (C) 2004, 2005 Entr'ouvert
 
6
 * http://lasso.entrouvert.org
 
7
 * 
 
8
 * Authors: See AUTHORS file in top-level directory.
 
9
 *
 
10
 * This program is free software; you can redistribute it and/or modify
 
11
 * it under the terms of the GNU General Public License as published by
 
12
 * the Free Software Foundation; either version 2 of the License, or
 
13
 * (at your option) any later version.
 
14
 * 
 
15
 * This program is distributed in the hope that it will be useful,
 
16
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
17
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
18
 * GNU General Public License for more details.
 
19
 * 
 
20
 * You should have received a copy of the GNU General Public License
 
21
 * along with this program; if not, write to the Free Software
 
22
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
23
 */
 
24
 
 
25
#include "samlp2_attribute_query.h"
 
26
 
 
27
/*
 
28
 * Schema fragment (saml-schema-protocol-2.0.xsd):
 
29
 *
 
30
 * <complexType name="AttributeQueryType">
 
31
 *   <complexContent>
 
32
 *     <extension base="samlp:SubjectQueryAbstractType">
 
33
 *       <sequence>
 
34
 *         <element ref="saml:Attribute" minOccurs="0" maxOccurs="unbounded"/>
 
35
 *       </sequence>
 
36
 *     </extension>
 
37
 *   </complexContent>
 
38
 * </complexType>
 
39
 */
 
40
 
 
41
/*****************************************************************************/
 
42
/* private methods                                                           */
 
43
/*****************************************************************************/
 
44
 
 
45
 
 
46
static struct XmlSnippet schema_snippets[] = {
 
47
        { "Attribute", SNIPPET_NODE,
 
48
                G_STRUCT_OFFSET(LassoSamlp2AttributeQuery, Attribute) },
 
49
        {NULL, 0, 0}
 
50
};
 
51
 
 
52
static LassoNodeClass *parent_class = NULL;
 
53
 
 
54
 
 
55
/*****************************************************************************/
 
56
/* instance and class init functions                                         */
 
57
/*****************************************************************************/
 
58
 
 
59
static void
 
60
instance_init(LassoSamlp2AttributeQuery *node)
 
61
{
 
62
        node->Attribute = NULL;
 
63
}
 
64
 
 
65
static void
 
66
class_init(LassoSamlp2AttributeQueryClass *klass)
 
67
{
 
68
        LassoNodeClass *nclass = LASSO_NODE_CLASS(klass);
 
69
 
 
70
        parent_class = g_type_class_peek_parent(klass);
 
71
        nclass->node_data = g_new0(LassoNodeClassData, 1);
 
72
        lasso_node_class_set_nodename(nclass, "AttributeQuery"); 
 
73
        lasso_node_class_set_ns(nclass, LASSO_SAML2_PROTOCOL_HREF, LASSO_SAML2_PROTOCOL_PREFIX);
 
74
        lasso_node_class_add_snippets(nclass, schema_snippets);
 
75
}
 
76
 
 
77
GType
 
78
lasso_samlp2_attribute_query_get_type()
 
79
{
 
80
        static GType this_type = 0;
 
81
 
 
82
        if (!this_type) {
 
83
                static const GTypeInfo this_info = {
 
84
                        sizeof (LassoSamlp2AttributeQueryClass),
 
85
                        NULL,
 
86
                        NULL,
 
87
                        (GClassInitFunc) class_init,
 
88
                        NULL,
 
89
                        NULL,
 
90
                        sizeof(LassoSamlp2AttributeQuery),
 
91
                        0,
 
92
                        (GInstanceInitFunc) instance_init,
 
93
                };
 
94
 
 
95
                this_type = g_type_register_static(LASSO_TYPE_SAMLP2_SUBJECT_QUERY_ABSTRACT,
 
96
                                "LassoSamlp2AttributeQuery", &this_info, 0);
 
97
        }
 
98
        return this_type;
 
99
}
 
100
 
 
101
/**
 
102
 * lasso_samlp2_attribute_query_new:
 
103
 *
 
104
 * Creates a new #LassoSamlp2AttributeQuery object.
 
105
 *
 
106
 * Return value: a newly created #LassoSamlp2AttributeQuery object
 
107
 **/
 
108
LassoNode*
 
109
lasso_samlp2_attribute_query_new()
 
110
{
 
111
        return g_object_new(LASSO_TYPE_SAMLP2_ATTRIBUTE_QUERY, NULL);
 
112
}