~ubuntu-branches/ubuntu/trusty/lasso/trusty

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>LassoSaml2AttributeValue</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
<link rel="home" href="index.html" title="Lasso Reference Manual">
<link rel="up" href="xml-samlv2.html" title="Objects from SAML 2.0 schemas">
<link rel="prev" href="lasso-LassoSaml2AttributeStatement.html" title="LassoSaml2AttributeStatement">
<link rel="next" href="lasso-LassoSaml2Attribute.html" title="LassoSaml2Attribute">
<meta name="generator" content="GTK-Doc V1.18 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
<tr valign="middle">
<td><a accesskey="p" href="lasso-LassoSaml2AttributeStatement.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
<td><a accesskey="u" href="xml-samlv2.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
<th width="100%" align="center">Lasso Reference Manual</th>
<td><a accesskey="n" href="lasso-LassoSaml2Attribute.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
</tr>
<tr><td colspan="5" class="shortcuts">
<a href="#lasso-LassoSaml2AttributeValue.synopsis" class="shortcut">Top</a>
                   | 
                  <a href="#lasso-LassoSaml2AttributeValue.description" class="shortcut">Description</a>
</td></tr>
</table>
<div class="refentry">
<a name="lasso-LassoSaml2AttributeValue"></a><div class="titlepage"></div>
<div class="refnamediv"><table width="100%"><tr>
<td valign="top">
<h2><span class="refentrytitle"><a name="lasso-LassoSaml2AttributeValue.top_of_page"></a>LassoSaml2AttributeValue</span></h2>
<p>LassoSaml2AttributeValue — value of an attribute in a SAML 2.0 assertion</p>
</td>
<td valign="top" align="right"></td>
</tr></table></div>
<div class="refsynopsisdiv">
<a name="lasso-LassoSaml2AttributeValue.synopsis"></a><h2>Synopsis</h2>
<pre class="synopsis">struct              <a class="link" href="lasso-LassoSaml2AttributeValue.html#LassoSaml2AttributeValue" title="struct LassoSaml2AttributeValue">LassoSaml2AttributeValue</a>;
<a class="link" href="lasso-LassoSaml2AttributeValue.html#LassoSaml2AttributeValue" title="struct LassoSaml2AttributeValue"><span class="returnvalue">LassoSaml2AttributeValue</span></a> * <a class="link" href="lasso-LassoSaml2AttributeValue.html#lasso-saml2-attribute-value-new" title="lasso_saml2_attribute_value_new ()">lasso_saml2_attribute_value_new</a>
                                                        (<em class="parameter"><code><span class="type">void</span></code></em>);
</pre>
</div>
<div class="refsect1">
<a name="lasso-LassoSaml2AttributeValue.description"></a><h2>Description</h2>
<p>
</p>
<div class="figure">
<a name="idp17280144"></a><p class="title"><b>Figure 46. Schema fragment from saml-schema-assertion-2.0.xsd)</b></p>
<div class="figure-contents"><pre class="programlisting">

&lt;element name="AttributeValue" type="anyType" nillable="true"/&gt;

</pre></div>
</div>
<p><br class="figure-break">
</p>
<p>
This object support a special of specifying its content. If the <em class="structfield"><code>any</code></em>
attribute is <code class="literal">NULL</code>, then you can attach an <span class="type">xmlNode</span> using
<a class="link" href="lasso-node.html#lasso-node-set-original-xmlnode" title="lasso_node_set_original_xmlnode ()"><code class="function">lasso_node_set_original_xmlnode()</code></a> and it will be used to generate the content of the serialized
<span class="type">xmlNode</span> for this object. The content (attributes, childrent and namespaces) of the
node will be copied to the result node created by a call to <a class="link" href="lasso-node.html#lasso-node-get-xmlNode" title="lasso_node_get_xmlNode ()"><code class="function">lasso_node_get_xmlNode()</code></a>.
</p>
</div>
<div class="refsect1">
<a name="lasso-LassoSaml2AttributeValue.details"></a><h2>Details</h2>
<div class="refsect2">
<a name="LassoSaml2AttributeValue"></a><h3>struct LassoSaml2AttributeValue</h3>
<pre class="programlisting">struct LassoSaml2AttributeValue {
	LassoNode parent;

	GList *any; /* of LassoNode */
};
</pre>
</div>
<hr>
<div class="refsect2">
<a name="lasso-saml2-attribute-value-new"></a><h3>lasso_saml2_attribute_value_new ()</h3>
<pre class="programlisting"><a class="link" href="lasso-LassoSaml2AttributeValue.html#LassoSaml2AttributeValue" title="struct LassoSaml2AttributeValue"><span class="returnvalue">LassoSaml2AttributeValue</span></a> * lasso_saml2_attribute_value_new
                                                        (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
</div>
</div>
<div class="refsect1">
<a name="lasso-LassoSaml2AttributeValue.see-also"></a><h2>See Also</h2>
<a class="link" href="lasso-LassoSaml2Attribute.html#LassoSaml2Attribute" title="struct LassoSaml2Attribute"><span class="type">LassoSaml2Attribute</span></a>, <a class="link" href="lasso-LassoSaml2AttributeStatement.html#LassoSaml2AttributeStatement" title="struct LassoSaml2AttributeStatement"><span class="type">LassoSaml2AttributeStatement</span></a>, <a class="link" href="lasso-LassoSaml2Assertion.html#LassoSaml2Assertion" title="struct LassoSaml2Assertion"><span class="type">LassoSaml2Assertion</span></a>
</div>
</div>
<div class="footer">
<hr>
          Generated by GTK-Doc V1.18</div>
</body>
</html>