uddi4r 0.8 → 0.9
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/uddi4r.rb +7 -0
- data/lib/{client.rb → uddi4r/client.rb} +121 -3
- data/lib/{connection.rb → uddi4r/connection.rb} +0 -1
- data/lib/{models.rb → uddi4r/models.rb} +94 -5
- data/lib/{soap_builder.rb → uddi4r/soap_builder.rb} +0 -0
- data/lib/uddi4r/try.rb +46 -0
- data/test/test_client.rb +5 -4
- data/test/test_connection.rb +4 -1
- data/test/test_model.rb +4 -1
- metadata +23 -78
- data/doc/classes/Uddi4r.html +0 -190
- data/doc/classes/Uddi4r/BindingDetail.html +0 -172
- data/doc/classes/Uddi4r/BindingTemplate.html +0 -187
- data/doc/classes/Uddi4r/BusinessDetail.html +0 -167
- data/doc/classes/Uddi4r/BusinessEntity.html +0 -167
- data/doc/classes/Uddi4r/BusinessInfo.html +0 -177
- data/doc/classes/Uddi4r/BusinessList.html +0 -172
- data/doc/classes/Uddi4r/BusinessService.html +0 -167
- data/doc/classes/Uddi4r/CategoryBag.html +0 -167
- data/doc/classes/Uddi4r/Client.html +0 -744
- data/doc/classes/Uddi4r/Connection.html +0 -365
- data/doc/classes/Uddi4r/DiscoveryURLs.html +0 -191
- data/doc/classes/Uddi4r/FindQualifiers.html +0 -191
- data/doc/classes/Uddi4r/IdentifierBag.html +0 -167
- data/doc/classes/Uddi4r/KeyedReference.html +0 -192
- data/doc/classes/Uddi4r/Model.html +0 -333
- data/doc/classes/Uddi4r/OverviewDoc.html +0 -154
- data/doc/classes/Uddi4r/RelatedBusinessesList.html +0 -167
- data/doc/classes/Uddi4r/ServiceDetail.html +0 -172
- data/doc/classes/Uddi4r/ServiceInfo.html +0 -172
- data/doc/classes/Uddi4r/ServiceList.html +0 -172
- data/doc/classes/Uddi4r/SoapBuilder.html +0 -390
- data/doc/classes/Uddi4r/TModel.html +0 -187
- data/doc/classes/Uddi4r/TModelBag.html +0 -189
- data/doc/classes/Uddi4r/TModelDetail.html +0 -167
- data/doc/classes/Uddi4r/TModelInfo.html +0 -167
- data/doc/classes/Uddi4r/TModelInstanceInfo.html +0 -172
- data/doc/classes/Uddi4r/TModelList.html +0 -167
- data/doc/created.rid +0 -1
- data/doc/dot/f_0.dot +0 -14
- data/doc/dot/f_0.png +0 -0
- data/doc/dot/f_1.dot +0 -386
- data/doc/dot/f_1.png +0 -0
- data/doc/dot/f_2.dot +0 -386
- data/doc/dot/f_2.png +0 -0
- data/doc/dot/f_3.dot +0 -386
- data/doc/dot/f_3.png +0 -0
- data/doc/dot/f_4.dot +0 -386
- data/doc/dot/f_4.png +0 -0
- data/doc/dot/m_1_0.dot +0 -386
- data/doc/dot/m_1_0.png +0 -0
- data/doc/dot/m_2_0.dot +0 -386
- data/doc/dot/m_2_0.png +0 -0
- data/doc/dot/m_3_0.dot +0 -386
- data/doc/dot/m_3_0.png +0 -0
- data/doc/dot/m_4_0.dot +0 -386
- data/doc/dot/m_4_0.png +0 -0
- data/doc/files/README.html +0 -152
- data/doc/files/lib/client_rb.html +0 -151
- data/doc/files/lib/connection_rb.html +0 -153
- data/doc/files/lib/models_rb.html +0 -149
- data/doc/files/lib/soap_builder_rb.html +0 -142
- data/doc/fr_class_index.html +0 -54
- data/doc/fr_file_index.html +0 -31
- data/doc/fr_method_index.html +0 -55
- data/doc/index.html +0 -24
- data/doc/rdoc-style.css +0 -208
@@ -1,191 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="iso-8859-1"?>
|
2
|
-
<!DOCTYPE html
|
3
|
-
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
4
|
-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
5
|
-
|
6
|
-
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
7
|
-
<head>
|
8
|
-
<title>Class: Uddi4r::FindQualifiers</title>
|
9
|
-
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
10
|
-
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
11
|
-
<link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
|
12
|
-
<script type="text/javascript">
|
13
|
-
// <![CDATA[
|
14
|
-
|
15
|
-
function popupCode( url ) {
|
16
|
-
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
|
17
|
-
}
|
18
|
-
|
19
|
-
function toggleCode( id ) {
|
20
|
-
if ( document.getElementById )
|
21
|
-
elem = document.getElementById( id );
|
22
|
-
else if ( document.all )
|
23
|
-
elem = eval( "document.all." + id );
|
24
|
-
else
|
25
|
-
return false;
|
26
|
-
|
27
|
-
elemStyle = elem.style;
|
28
|
-
|
29
|
-
if ( elemStyle.display != "block" ) {
|
30
|
-
elemStyle.display = "block"
|
31
|
-
} else {
|
32
|
-
elemStyle.display = "none"
|
33
|
-
}
|
34
|
-
|
35
|
-
return true;
|
36
|
-
}
|
37
|
-
|
38
|
-
// Make codeblocks hidden by default
|
39
|
-
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
|
40
|
-
|
41
|
-
// ]]>
|
42
|
-
</script>
|
43
|
-
|
44
|
-
</head>
|
45
|
-
<body>
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
<div id="classHeader">
|
50
|
-
<table class="header-table">
|
51
|
-
<tr class="top-aligned-row">
|
52
|
-
<td><strong>Class</strong></td>
|
53
|
-
<td class="class-name-in-header">Uddi4r::FindQualifiers</td>
|
54
|
-
</tr>
|
55
|
-
<tr class="top-aligned-row">
|
56
|
-
<td><strong>In:</strong></td>
|
57
|
-
<td>
|
58
|
-
<a href="../../files/lib/models_rb.html">
|
59
|
-
lib/models.rb
|
60
|
-
</a>
|
61
|
-
<br />
|
62
|
-
</td>
|
63
|
-
</tr>
|
64
|
-
|
65
|
-
<tr class="top-aligned-row">
|
66
|
-
<td><strong>Parent:</strong></td>
|
67
|
-
<td>
|
68
|
-
<a href="Model.html">
|
69
|
-
Model
|
70
|
-
</a>
|
71
|
-
</td>
|
72
|
-
</tr>
|
73
|
-
</table>
|
74
|
-
</div>
|
75
|
-
<!-- banner header -->
|
76
|
-
|
77
|
-
<div id="bodyContent">
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
<div id="contextContent">
|
82
|
-
<div id="diagram">
|
83
|
-
<map id="map" name="map">
|
84
|
-
<area shape="RECT" coords="1378,135,1450,183" href="Model.html" alt="Model">
|
85
|
-
<area shape="RECT" coords="27,234,118,282" href="BindingDetail.html" alt="BindingDetail">
|
86
|
-
<area shape="RECT" coords="142,234,222,282" href="ServiceList.html" alt="ServiceList">
|
87
|
-
<area shape="RECT" coords="246,234,336,282" href="BusinessList.html" alt="BusinessList">
|
88
|
-
<area shape="RECT" coords="360,234,456,282" href="FindQualifiers.html" alt="FindQualifiers">
|
89
|
-
<area shape="RECT" coords="480,234,568,282" href="IdentifierBag.html" alt="IdentifierBag">
|
90
|
-
<area shape="RECT" coords="592,234,683,282" href="OverviewDoc.html" alt="OverviewDoc">
|
91
|
-
<area shape="RECT" coords="707,234,814,282" href="KeyedReference.html" alt="KeyedReference">
|
92
|
-
<area shape="RECT" coords="838,234,944,282" href="BindingTemplate.html" alt="BindingTemplate">
|
93
|
-
<area shape="RECT" coords="968,234,1091,282" href="TModelInstanceInfo.html" alt="TModelInstanceInfo">
|
94
|
-
<area shape="RECT" coords="1115,234,1214,282" href="BusinessEntity.html" alt="BusinessEntity">
|
95
|
-
<area shape="RECT" coords="1238,234,1344,282" href="BusinessService.html" alt="BusinessService">
|
96
|
-
<area shape="RECT" coords="1368,234,1459,282" href="BusinessInfo.html" alt="BusinessInfo">
|
97
|
-
<area shape="RECT" coords="1483,234,1566,282" href="ServiceInfo.html" alt="ServiceInfo">
|
98
|
-
<area shape="RECT" coords="1590,234,1726,282" href="RelatedBusinessesList.html" alt="RelatedBusinessesList">
|
99
|
-
<area shape="RECT" coords="1750,234,1840,282" href="ServiceDetail.html" alt="ServiceDetail">
|
100
|
-
<area shape="RECT" coords="1864,234,1955,282" href="TModelDetail.html" alt="TModelDetail">
|
101
|
-
<area shape="RECT" coords="1979,234,2062,282" href="TModelInfo.html" alt="TModelInfo">
|
102
|
-
<area shape="RECT" coords="2086,234,2168,282" href="TModelList.html" alt="TModelList">
|
103
|
-
<area shape="RECT" coords="2192,234,2275,282" href="TModelBag.html" alt="TModelBag">
|
104
|
-
<area shape="RECT" coords="2299,234,2400,282" href="DiscoveryURLs.html" alt="DiscoveryURLs">
|
105
|
-
<area shape="RECT" coords="2424,234,2496,282" href="TModel.html" alt="TModel">
|
106
|
-
<area shape="RECT" coords="2520,234,2611,282" href="CategoryBag.html" alt="CategoryBag">
|
107
|
-
<area shape="RECT" coords="2635,234,2734,282" href="BusinessDetail.html" alt="BusinessDetail">
|
108
|
-
<area shape="RECT" coords="1378,6,1450,54" href="../ROXML.html" alt="ROXML">
|
109
|
-
<area shape="RECT" coords="2758,234,2840,282" href="Connection.html" alt="Connection">
|
110
|
-
<area shape="RECT" coords="335,135,407,183" href="Client.html" alt="Client">
|
111
|
-
<area shape="RECT" coords="2747,124,2840,171" href="SoapBuilder.html" alt="SoapBuilder">
|
112
|
-
<area shape="RECT" coords="16,91,2851,292" href="../Uddi4r.html" alt="Uddi4r">
|
113
|
-
</map>
|
114
|
-
<img src="../../dot/m_4_0.png" usemap="#map" border=0 alt="Module: Uddi4r">
|
115
|
-
</div>
|
116
|
-
|
117
|
-
<div id="description">
|
118
|
-
<p>
|
119
|
-
UDDI findQualifiers, for more information, see <a
|
120
|
-
href="Model.html">Uddi4r::Model</a>.
|
121
|
-
</p>
|
122
|
-
|
123
|
-
</div>
|
124
|
-
|
125
|
-
|
126
|
-
</div>
|
127
|
-
|
128
|
-
<div id="method-list">
|
129
|
-
<h3 class="section-bar">Methods</h3>
|
130
|
-
|
131
|
-
<div class="name-list">
|
132
|
-
<a href="#M000008">new</a>
|
133
|
-
</div>
|
134
|
-
</div>
|
135
|
-
|
136
|
-
</div>
|
137
|
-
|
138
|
-
|
139
|
-
<!-- if includes -->
|
140
|
-
|
141
|
-
<div id="section">
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
<!-- if method_list -->
|
151
|
-
<div id="methods">
|
152
|
-
<h3 class="section-bar">Public Class methods</h3>
|
153
|
-
|
154
|
-
<div id="method-M000008" class="method-detail">
|
155
|
-
<a name="M000008"></a>
|
156
|
-
|
157
|
-
<div class="method-heading">
|
158
|
-
<a href="#M000008" class="method-signature">
|
159
|
-
<span class="method-name">new</span><span class="method-args">(*qualifiers)</span>
|
160
|
-
</a>
|
161
|
-
</div>
|
162
|
-
|
163
|
-
<div class="method-description">
|
164
|
-
<p><a class="source-toggle" href="#"
|
165
|
-
onclick="toggleCode('M000008-source');return false;">[Source]</a></p>
|
166
|
-
<div class="method-source-code" id="M000008-source">
|
167
|
-
<pre>
|
168
|
-
<span class="ruby-comment cmt"># File lib/models.rb, line 201</span>
|
169
|
-
<span class="ruby-keyword kw">def</span> <span class="ruby-identifier">initialize</span>(<span class="ruby-operator">*</span><span class="ruby-identifier">qualifiers</span>)
|
170
|
-
<span class="ruby-identifier">qualifiers</span>.<span class="ruby-identifier">each</span> <span class="ruby-keyword kw">do</span> <span class="ruby-operator">|</span><span class="ruby-identifier">q</span><span class="ruby-operator">|</span>
|
171
|
-
<span class="ruby-identifier">find_qualifier</span> <span class="ruby-operator"><<</span> <span class="ruby-identifier">q</span>
|
172
|
-
<span class="ruby-keyword kw">end</span>
|
173
|
-
<span class="ruby-keyword kw">end</span>
|
174
|
-
</pre>
|
175
|
-
</div>
|
176
|
-
</div>
|
177
|
-
</div>
|
178
|
-
|
179
|
-
|
180
|
-
</div>
|
181
|
-
|
182
|
-
|
183
|
-
</div>
|
184
|
-
|
185
|
-
|
186
|
-
<div id="validator-badges">
|
187
|
-
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
188
|
-
</div>
|
189
|
-
|
190
|
-
</body>
|
191
|
-
</html>
|
@@ -1,167 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="iso-8859-1"?>
|
2
|
-
<!DOCTYPE html
|
3
|
-
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
4
|
-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
5
|
-
|
6
|
-
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
7
|
-
<head>
|
8
|
-
<title>Class: Uddi4r::IdentifierBag</title>
|
9
|
-
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
10
|
-
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
11
|
-
<link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
|
12
|
-
<script type="text/javascript">
|
13
|
-
// <![CDATA[
|
14
|
-
|
15
|
-
function popupCode( url ) {
|
16
|
-
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
|
17
|
-
}
|
18
|
-
|
19
|
-
function toggleCode( id ) {
|
20
|
-
if ( document.getElementById )
|
21
|
-
elem = document.getElementById( id );
|
22
|
-
else if ( document.all )
|
23
|
-
elem = eval( "document.all." + id );
|
24
|
-
else
|
25
|
-
return false;
|
26
|
-
|
27
|
-
elemStyle = elem.style;
|
28
|
-
|
29
|
-
if ( elemStyle.display != "block" ) {
|
30
|
-
elemStyle.display = "block"
|
31
|
-
} else {
|
32
|
-
elemStyle.display = "none"
|
33
|
-
}
|
34
|
-
|
35
|
-
return true;
|
36
|
-
}
|
37
|
-
|
38
|
-
// Make codeblocks hidden by default
|
39
|
-
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
|
40
|
-
|
41
|
-
// ]]>
|
42
|
-
</script>
|
43
|
-
|
44
|
-
</head>
|
45
|
-
<body>
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
<div id="classHeader">
|
50
|
-
<table class="header-table">
|
51
|
-
<tr class="top-aligned-row">
|
52
|
-
<td><strong>Class</strong></td>
|
53
|
-
<td class="class-name-in-header">Uddi4r::IdentifierBag</td>
|
54
|
-
</tr>
|
55
|
-
<tr class="top-aligned-row">
|
56
|
-
<td><strong>In:</strong></td>
|
57
|
-
<td>
|
58
|
-
<a href="../../files/lib/models_rb.html">
|
59
|
-
lib/models.rb
|
60
|
-
</a>
|
61
|
-
<br />
|
62
|
-
</td>
|
63
|
-
</tr>
|
64
|
-
|
65
|
-
<tr class="top-aligned-row">
|
66
|
-
<td><strong>Parent:</strong></td>
|
67
|
-
<td>
|
68
|
-
<a href="Model.html">
|
69
|
-
Model
|
70
|
-
</a>
|
71
|
-
</td>
|
72
|
-
</tr>
|
73
|
-
</table>
|
74
|
-
</div>
|
75
|
-
<!-- banner header -->
|
76
|
-
|
77
|
-
<div id="bodyContent">
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
<div id="contextContent">
|
82
|
-
<div id="diagram">
|
83
|
-
<map id="map" name="map">
|
84
|
-
<area shape="RECT" coords="1378,135,1450,183" href="Model.html" alt="Model">
|
85
|
-
<area shape="RECT" coords="27,234,118,282" href="BindingDetail.html" alt="BindingDetail">
|
86
|
-
<area shape="RECT" coords="142,234,222,282" href="ServiceList.html" alt="ServiceList">
|
87
|
-
<area shape="RECT" coords="246,234,336,282" href="BusinessList.html" alt="BusinessList">
|
88
|
-
<area shape="RECT" coords="360,234,456,282" href="FindQualifiers.html" alt="FindQualifiers">
|
89
|
-
<area shape="RECT" coords="480,234,568,282" href="IdentifierBag.html" alt="IdentifierBag">
|
90
|
-
<area shape="RECT" coords="592,234,683,282" href="OverviewDoc.html" alt="OverviewDoc">
|
91
|
-
<area shape="RECT" coords="707,234,814,282" href="KeyedReference.html" alt="KeyedReference">
|
92
|
-
<area shape="RECT" coords="838,234,944,282" href="BindingTemplate.html" alt="BindingTemplate">
|
93
|
-
<area shape="RECT" coords="968,234,1091,282" href="TModelInstanceInfo.html" alt="TModelInstanceInfo">
|
94
|
-
<area shape="RECT" coords="1115,234,1214,282" href="BusinessEntity.html" alt="BusinessEntity">
|
95
|
-
<area shape="RECT" coords="1238,234,1344,282" href="BusinessService.html" alt="BusinessService">
|
96
|
-
<area shape="RECT" coords="1368,234,1459,282" href="BusinessInfo.html" alt="BusinessInfo">
|
97
|
-
<area shape="RECT" coords="1483,234,1566,282" href="ServiceInfo.html" alt="ServiceInfo">
|
98
|
-
<area shape="RECT" coords="1590,234,1726,282" href="RelatedBusinessesList.html" alt="RelatedBusinessesList">
|
99
|
-
<area shape="RECT" coords="1750,234,1840,282" href="ServiceDetail.html" alt="ServiceDetail">
|
100
|
-
<area shape="RECT" coords="1864,234,1955,282" href="TModelDetail.html" alt="TModelDetail">
|
101
|
-
<area shape="RECT" coords="1979,234,2062,282" href="TModelInfo.html" alt="TModelInfo">
|
102
|
-
<area shape="RECT" coords="2086,234,2168,282" href="TModelList.html" alt="TModelList">
|
103
|
-
<area shape="RECT" coords="2192,234,2275,282" href="TModelBag.html" alt="TModelBag">
|
104
|
-
<area shape="RECT" coords="2299,234,2400,282" href="DiscoveryURLs.html" alt="DiscoveryURLs">
|
105
|
-
<area shape="RECT" coords="2424,234,2496,282" href="TModel.html" alt="TModel">
|
106
|
-
<area shape="RECT" coords="2520,234,2611,282" href="CategoryBag.html" alt="CategoryBag">
|
107
|
-
<area shape="RECT" coords="2635,234,2734,282" href="BusinessDetail.html" alt="BusinessDetail">
|
108
|
-
<area shape="RECT" coords="1378,6,1450,54" href="../ROXML.html" alt="ROXML">
|
109
|
-
<area shape="RECT" coords="2758,234,2840,282" href="Connection.html" alt="Connection">
|
110
|
-
<area shape="RECT" coords="335,135,407,183" href="Client.html" alt="Client">
|
111
|
-
<area shape="RECT" coords="2747,124,2840,171" href="SoapBuilder.html" alt="SoapBuilder">
|
112
|
-
<area shape="RECT" coords="16,91,2851,292" href="../Uddi4r.html" alt="Uddi4r">
|
113
|
-
</map>
|
114
|
-
<img src="../../dot/m_4_0.png" usemap="#map" border=0 alt="Module: Uddi4r">
|
115
|
-
</div>
|
116
|
-
|
117
|
-
<div id="description">
|
118
|
-
<p>
|
119
|
-
UDDI identifierBag, for more information, see <a
|
120
|
-
href="Model.html">Uddi4r::Model</a>.
|
121
|
-
</p>
|
122
|
-
|
123
|
-
</div>
|
124
|
-
|
125
|
-
|
126
|
-
</div>
|
127
|
-
|
128
|
-
|
129
|
-
</div>
|
130
|
-
|
131
|
-
|
132
|
-
<!-- if includes -->
|
133
|
-
|
134
|
-
<div id="section">
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
<div id="attribute-list">
|
141
|
-
<h3 class="section-bar">Attributes</h3>
|
142
|
-
|
143
|
-
<div class="name-list">
|
144
|
-
<table>
|
145
|
-
<tr class="top-aligned-row context-row">
|
146
|
-
<td class="context-item-name">keyed_reference</td>
|
147
|
-
<td class="context-item-value"> </td>
|
148
|
-
<td class="context-item-desc"></td>
|
149
|
-
</tr>
|
150
|
-
</table>
|
151
|
-
</div>
|
152
|
-
</div>
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
<!-- if method_list -->
|
157
|
-
|
158
|
-
|
159
|
-
</div>
|
160
|
-
|
161
|
-
|
162
|
-
<div id="validator-badges">
|
163
|
-
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
164
|
-
</div>
|
165
|
-
|
166
|
-
</body>
|
167
|
-
</html>
|
@@ -1,192 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="iso-8859-1"?>
|
2
|
-
<!DOCTYPE html
|
3
|
-
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
4
|
-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
5
|
-
|
6
|
-
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
7
|
-
<head>
|
8
|
-
<title>Class: Uddi4r::KeyedReference</title>
|
9
|
-
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
10
|
-
<meta http-equiv="Content-Script-Type" content="text/javascript" />
|
11
|
-
<link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
|
12
|
-
<script type="text/javascript">
|
13
|
-
// <![CDATA[
|
14
|
-
|
15
|
-
function popupCode( url ) {
|
16
|
-
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
|
17
|
-
}
|
18
|
-
|
19
|
-
function toggleCode( id ) {
|
20
|
-
if ( document.getElementById )
|
21
|
-
elem = document.getElementById( id );
|
22
|
-
else if ( document.all )
|
23
|
-
elem = eval( "document.all." + id );
|
24
|
-
else
|
25
|
-
return false;
|
26
|
-
|
27
|
-
elemStyle = elem.style;
|
28
|
-
|
29
|
-
if ( elemStyle.display != "block" ) {
|
30
|
-
elemStyle.display = "block"
|
31
|
-
} else {
|
32
|
-
elemStyle.display = "none"
|
33
|
-
}
|
34
|
-
|
35
|
-
return true;
|
36
|
-
}
|
37
|
-
|
38
|
-
// Make codeblocks hidden by default
|
39
|
-
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
|
40
|
-
|
41
|
-
// ]]>
|
42
|
-
</script>
|
43
|
-
|
44
|
-
</head>
|
45
|
-
<body>
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
<div id="classHeader">
|
50
|
-
<table class="header-table">
|
51
|
-
<tr class="top-aligned-row">
|
52
|
-
<td><strong>Class</strong></td>
|
53
|
-
<td class="class-name-in-header">Uddi4r::KeyedReference</td>
|
54
|
-
</tr>
|
55
|
-
<tr class="top-aligned-row">
|
56
|
-
<td><strong>In:</strong></td>
|
57
|
-
<td>
|
58
|
-
<a href="../../files/lib/models_rb.html">
|
59
|
-
lib/models.rb
|
60
|
-
</a>
|
61
|
-
<br />
|
62
|
-
</td>
|
63
|
-
</tr>
|
64
|
-
|
65
|
-
<tr class="top-aligned-row">
|
66
|
-
<td><strong>Parent:</strong></td>
|
67
|
-
<td>
|
68
|
-
<a href="Model.html">
|
69
|
-
Model
|
70
|
-
</a>
|
71
|
-
</td>
|
72
|
-
</tr>
|
73
|
-
</table>
|
74
|
-
</div>
|
75
|
-
<!-- banner header -->
|
76
|
-
|
77
|
-
<div id="bodyContent">
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
<div id="contextContent">
|
82
|
-
<div id="diagram">
|
83
|
-
<map id="map" name="map">
|
84
|
-
<area shape="RECT" coords="1378,135,1450,183" href="Model.html" alt="Model">
|
85
|
-
<area shape="RECT" coords="27,234,118,282" href="BindingDetail.html" alt="BindingDetail">
|
86
|
-
<area shape="RECT" coords="142,234,222,282" href="ServiceList.html" alt="ServiceList">
|
87
|
-
<area shape="RECT" coords="246,234,336,282" href="BusinessList.html" alt="BusinessList">
|
88
|
-
<area shape="RECT" coords="360,234,456,282" href="FindQualifiers.html" alt="FindQualifiers">
|
89
|
-
<area shape="RECT" coords="480,234,568,282" href="IdentifierBag.html" alt="IdentifierBag">
|
90
|
-
<area shape="RECT" coords="592,234,683,282" href="OverviewDoc.html" alt="OverviewDoc">
|
91
|
-
<area shape="RECT" coords="707,234,814,282" href="KeyedReference.html" alt="KeyedReference">
|
92
|
-
<area shape="RECT" coords="838,234,944,282" href="BindingTemplate.html" alt="BindingTemplate">
|
93
|
-
<area shape="RECT" coords="968,234,1091,282" href="TModelInstanceInfo.html" alt="TModelInstanceInfo">
|
94
|
-
<area shape="RECT" coords="1115,234,1214,282" href="BusinessEntity.html" alt="BusinessEntity">
|
95
|
-
<area shape="RECT" coords="1238,234,1344,282" href="BusinessService.html" alt="BusinessService">
|
96
|
-
<area shape="RECT" coords="1368,234,1459,282" href="BusinessInfo.html" alt="BusinessInfo">
|
97
|
-
<area shape="RECT" coords="1483,234,1566,282" href="ServiceInfo.html" alt="ServiceInfo">
|
98
|
-
<area shape="RECT" coords="1590,234,1726,282" href="RelatedBusinessesList.html" alt="RelatedBusinessesList">
|
99
|
-
<area shape="RECT" coords="1750,234,1840,282" href="ServiceDetail.html" alt="ServiceDetail">
|
100
|
-
<area shape="RECT" coords="1864,234,1955,282" href="TModelDetail.html" alt="TModelDetail">
|
101
|
-
<area shape="RECT" coords="1979,234,2062,282" href="TModelInfo.html" alt="TModelInfo">
|
102
|
-
<area shape="RECT" coords="2086,234,2168,282" href="TModelList.html" alt="TModelList">
|
103
|
-
<area shape="RECT" coords="2192,234,2275,282" href="TModelBag.html" alt="TModelBag">
|
104
|
-
<area shape="RECT" coords="2299,234,2400,282" href="DiscoveryURLs.html" alt="DiscoveryURLs">
|
105
|
-
<area shape="RECT" coords="2424,234,2496,282" href="TModel.html" alt="TModel">
|
106
|
-
<area shape="RECT" coords="2520,234,2611,282" href="CategoryBag.html" alt="CategoryBag">
|
107
|
-
<area shape="RECT" coords="2635,234,2734,282" href="BusinessDetail.html" alt="BusinessDetail">
|
108
|
-
<area shape="RECT" coords="1378,6,1450,54" href="../ROXML.html" alt="ROXML">
|
109
|
-
<area shape="RECT" coords="2758,234,2840,282" href="Connection.html" alt="Connection">
|
110
|
-
<area shape="RECT" coords="335,135,407,183" href="Client.html" alt="Client">
|
111
|
-
<area shape="RECT" coords="2747,124,2840,171" href="SoapBuilder.html" alt="SoapBuilder">
|
112
|
-
<area shape="RECT" coords="16,91,2851,292" href="../Uddi4r.html" alt="Uddi4r">
|
113
|
-
</map>
|
114
|
-
<img src="../../dot/m_4_0.png" usemap="#map" border=0 alt="Module: Uddi4r">
|
115
|
-
</div>
|
116
|
-
|
117
|
-
<div id="description">
|
118
|
-
<p>
|
119
|
-
UDDI keyedReference, for more information, see <a
|
120
|
-
href="Model.html">Uddi4r::Model</a>.
|
121
|
-
</p>
|
122
|
-
|
123
|
-
</div>
|
124
|
-
|
125
|
-
|
126
|
-
</div>
|
127
|
-
|
128
|
-
|
129
|
-
</div>
|
130
|
-
|
131
|
-
|
132
|
-
<!-- if includes -->
|
133
|
-
|
134
|
-
<div id="section">
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
<div id="attribute-list">
|
141
|
-
<h3 class="section-bar">Attributes</h3>
|
142
|
-
|
143
|
-
<div class="name-list">
|
144
|
-
<table>
|
145
|
-
<tr class="top-aligned-row context-row">
|
146
|
-
<td class="context-item-name">keyName</td>
|
147
|
-
<td class="context-item-value"> </td>
|
148
|
-
<td class="context-item-desc"></td>
|
149
|
-
</tr>
|
150
|
-
<tr class="top-aligned-row context-row">
|
151
|
-
<td class="context-item-name">keyValue</td>
|
152
|
-
<td class="context-item-value"> </td>
|
153
|
-
<td class="context-item-desc"></td>
|
154
|
-
</tr>
|
155
|
-
<tr class="top-aligned-row context-row">
|
156
|
-
<td class="context-item-name">key_name</td>
|
157
|
-
<td class="context-item-value"> </td>
|
158
|
-
<td class="context-item-desc"></td>
|
159
|
-
</tr>
|
160
|
-
<tr class="top-aligned-row context-row">
|
161
|
-
<td class="context-item-name">key_value</td>
|
162
|
-
<td class="context-item-value"> </td>
|
163
|
-
<td class="context-item-desc"></td>
|
164
|
-
</tr>
|
165
|
-
<tr class="top-aligned-row context-row">
|
166
|
-
<td class="context-item-name">tModelKey</td>
|
167
|
-
<td class="context-item-value"> </td>
|
168
|
-
<td class="context-item-desc"></td>
|
169
|
-
</tr>
|
170
|
-
<tr class="top-aligned-row context-row">
|
171
|
-
<td class="context-item-name">t_model_key</td>
|
172
|
-
<td class="context-item-value"> </td>
|
173
|
-
<td class="context-item-desc"></td>
|
174
|
-
</tr>
|
175
|
-
</table>
|
176
|
-
</div>
|
177
|
-
</div>
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
<!-- if method_list -->
|
182
|
-
|
183
|
-
|
184
|
-
</div>
|
185
|
-
|
186
|
-
|
187
|
-
<div id="validator-badges">
|
188
|
-
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
|
189
|
-
</div>
|
190
|
-
|
191
|
-
</body>
|
192
|
-
</html>
|