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

« back to all changes in this revision

Viewing changes to lasso/xml/ws/wsse_reference.c

  • Committer: Bazaar Package Importer
  • Author(s): Michael Bienia
  • Date: 2007-11-01 20:01:20 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20071101200120-9ruoui67n24xyz9c
Tags: 2.1.1-2ubuntu1
* Merge from debian unstable (LP: #134095), remaining changes:
  + debian/control:
    - Modify Maintainer value to match DebianMaintainerField spec.
  + configure{,.ac}:
    - Add missing quotes around the value for PHP[45]_LIBS.
* Fix two lintian warnings:
  + debian/control:
    - liblasso3-dev: Replace ${Source-Version} with ${binary:Version}
  + debian/rules:
    - Don't ignore a make clean error.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* $Id: wsse_reference.c,v 1.0 2005/10/14 15:17:55 fpeters Exp $ 
 
2
 *
 
3
 * Lasso - A free implementation of the Liberty Alliance specifications.
 
4
 *
 
5
 * Copyright (C) 2004-2007 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 "wsse_reference.h"
 
26
 
 
27
/*
 
28
 * Schema fragment (oasis-200401-wss-wssecurity-secext-1.0.xsd):
 
29
 *
 
30
 * <xs:complexType name="ReferenceType">
 
31
 *   <xs:annotation>
 
32
 *     <xs:documentation>This type represents a reference to an external security
 
33
 *             token.</xs:documentation>
 
34
 *     </xs:annotation>
 
35
 *     <xs:attribute name="URI" type="xs:anyURI"/>
 
36
 *     <xs:attribute name="ValueType" type="xs:anyURI"/>
 
37
 *     <xs:anyAttribute namespace="##other" processContents="lax"/>
 
38
 *   </xs:complexType>
 
39
 */
 
40
 
 
41
/*****************************************************************************/
 
42
/* private methods                                                           */
 
43
/*****************************************************************************/
 
44
 
 
45
 
 
46
static struct XmlSnippet schema_snippets[] = {
 
47
        { "URI", SNIPPET_ATTRIBUTE,
 
48
                G_STRUCT_OFFSET(LassoWsSec1Reference, URI) },
 
49
        { "ValueType", SNIPPET_ATTRIBUTE,
 
50
                G_STRUCT_OFFSET(LassoWsSec1Reference, ValueType) },
 
51
        { "attributes", SNIPPET_ATTRIBUTE | SNIPPET_ANY,
 
52
                G_STRUCT_OFFSET(LassoWsSec1Reference, attributes) },
 
53
        {NULL, 0, 0}
 
54
};
 
55
 
 
56
static LassoNodeClass *parent_class = NULL;
 
57
 
 
58
 
 
59
/*****************************************************************************/
 
60
/* instance and class init functions                                         */
 
61
/*****************************************************************************/
 
62
 
 
63
static void
 
64
instance_init(LassoWsSec1Reference *node)
 
65
{
 
66
        node->URI = NULL;
 
67
        node->ValueType = NULL;
 
68
        node->attributes = g_hash_table_new_full(
 
69
                g_str_hash, g_str_equal, g_free, g_free);
 
70
}
 
71
 
 
72
static void
 
73
class_init(LassoWsSec1ReferenceClass *klass)
 
74
{
 
75
        LassoNodeClass *nclass = LASSO_NODE_CLASS(klass);
 
76
 
 
77
        parent_class = g_type_class_peek_parent(klass);
 
78
        nclass->node_data = g_new0(LassoNodeClassData, 1);
 
79
        lasso_node_class_set_nodename(nclass, "Reference");
 
80
        lasso_node_class_set_ns(nclass, LASSO_WSSE1_HREF, LASSO_WSSE1_PREFIX);
 
81
        lasso_node_class_add_snippets(nclass, schema_snippets);
 
82
}
 
83
 
 
84
GType
 
85
lasso_wsse_reference_get_type()
 
86
{
 
87
        static GType this_type = 0;
 
88
 
 
89
        if (!this_type) {
 
90
                static const GTypeInfo this_info = {
 
91
                        sizeof (LassoWsSec1ReferenceClass),
 
92
                        NULL,
 
93
                        NULL,
 
94
                        (GClassInitFunc) class_init,
 
95
                        NULL,
 
96
                        NULL,
 
97
                        sizeof(LassoWsSec1Reference),
 
98
                        0,
 
99
                        (GInstanceInitFunc) instance_init,
 
100
                };
 
101
 
 
102
                this_type = g_type_register_static(LASSO_TYPE_NODE,
 
103
                                "LassoWsSec1Reference", &this_info, 0);
 
104
        }
 
105
        return this_type;
 
106
}
 
107
 
 
108
/**
 
109
 * lasso_wsse_reference_new:
 
110
 *
 
111
 * Creates a new #LassoWsSec1Reference object.
 
112
 *
 
113
 * Return value: a newly created #LassoWsSec1Reference object
 
114
 **/
 
115
LassoWsSec1Reference*
 
116
lasso_wsse_reference_new()
 
117
{
 
118
        return g_object_new(LASSO_TYPE_WSSE_REFERENCE, NULL);
 
119
}