You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commons-dev@ws.apache.org by sa...@apache.org on 2006/03/13 10:11:43 UTC

svn commit: r385473 [19/20] - in /webservices/commons/site/policy: ./ apidocs/ apidocs/org/ apidocs/org/apache/ apidocs/org/apache/ws/ apidocs/org/apache/ws/policy/ apidocs/org/apache/ws/policy/class-use/ apidocs/org/apache/ws/policy/util/ apidocs/org/...

Added: webservices/commons/site/policy/xref/org/apache/ws/policy/XorCompositeAssertion.html
URL: http://svn.apache.org/viewcvs/webservices/commons/site/policy/xref/org/apache/ws/policy/XorCompositeAssertion.html?rev=385473&view=auto
==============================================================================
--- webservices/commons/site/policy/xref/org/apache/ws/policy/XorCompositeAssertion.html (added)
+++ webservices/commons/site/policy/xref/org/apache/ws/policy/XorCompositeAssertion.html Mon Mar 13 01:11:07 2006
@@ -0,0 +1,290 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" /><title>XorCompositeAssertion xref</title>
+<link type="text/css" rel="stylesheet" href="../../../../stylesheet.css" />
+</head>
+<body>
+<div id="overview"><a href="../../../../../apidocs/org/apache/ws/policy/XorCompositeAssertion.html">View Javadoc</a></div><pre>
+
+<a name="1" href="#1">1</a>   <em class="comment">/*</em>
+<a name="2" href="#2">2</a>   <em class="comment"> * Copyright 2001-2004 The Apache Software Foundation.</em>
+<a name="3" href="#3">3</a>   <em class="comment"> * </em>
+<a name="4" href="#4">4</a>   <em class="comment"> * Licensed under the Apache License, Version 2.0 (the "License");</em>
+<a name="5" href="#5">5</a>   <em class="comment"> * you may not use this file except in compliance with the License.</em>
+<a name="6" href="#6">6</a>   <em class="comment"> * You may obtain a copy of the License at</em>
+<a name="7" href="#7">7</a>   <em class="comment"> * </em>
+<a name="8" href="#8">8</a>   <em class="comment"> *      <a href="http://www.apache.org/licenses/LICENSE-2.0" target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0</a></em>
+<a name="9" href="#9">9</a>   <em class="comment"> * </em>
+<a name="10" href="#10">10</a>  <em class="comment"> * Unless required by applicable law or agreed to in writing, software</em>
+<a name="11" href="#11">11</a>  <em class="comment"> * distributed under the License is distributed on an "AS IS" BASIS,</em>
+<a name="12" href="#12">12</a>  <em class="comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</em>
+<a name="13" href="#13">13</a>  <em class="comment"> * See the License for the specific language governing permissions and</em>
+<a name="14" href="#14">14</a>  <em class="comment"> * limitations under the License.</em>
+<a name="15" href="#15">15</a>  <em class="comment"> */</em>
+<a name="16" href="#16">16</a>  
+<a name="17" href="#17">17</a>  <strong>package</strong> <a href="../../../../org/apache/ws/policy/package-summary.html">org.apache.ws.policy</a>;
+<a name="18" href="#18">18</a>  
+<a name="19" href="#19">19</a>  <strong>import</strong> java.util.Iterator;
+<a name="20" href="#20">20</a>  
+<a name="21" href="#21">21</a>  <strong>import</strong> org.apache.commons.logging.LogFactory;
+<a name="22" href="#22">22</a>  <strong>import</strong> org.apache.commons.logging.Log;
+<a name="23" href="#23">23</a>  
+<a name="24" href="#24">24</a>  <strong>import</strong> org.apache.ws.policy.util.PolicyRegistry;
+<a name="25" href="#25">25</a>  
+<a name="26" href="#26">26</a>  <em>/**<em>*</em></em>
+<a name="27" href="#27">27</a>  <em> * XorCompositeAssertion requires that exactly one of its terms are met.</em>
+<a name="28" href="#28">28</a>  <em> * </em>
+<a name="29" href="#29">29</a>  <em> * Sanka Samaranayake (sanka@apache.org)</em>
+<a name="30" href="#30">30</a>  <em> */</em>
+<a name="31" href="#31">31</a>  <strong>public</strong> <strong>class</strong> <a href="../../../../org/apache/ws/policy/XorCompositeAssertion.html">XorCompositeAssertion</a> <strong>extends</strong> <a href="../../../../org/apache/ws/policy/AbstractAssertion.html">AbstractAssertion</a> implements
+<a name="32" href="#32">32</a>  		CompositeAssertion {
+<a name="33" href="#33">33</a>  
+<a name="34" href="#34">34</a>  	<strong>private</strong> Log log = LogFactory.getLog(<strong>this</strong>.getClass().getName());
+<a name="35" href="#35">35</a>  
+<a name="36" href="#36">36</a>  	<strong>public</strong> <a href="../../../../org/apache/ws/policy/XorCompositeAssertion.html">XorCompositeAssertion</a>() {
+<a name="37" href="#37">37</a>  	}
+<a name="38" href="#38">38</a>  
+<a name="39" href="#39">39</a>  	<strong>public</strong> <strong>void</strong> addTerm(<a href="../../../../org/apache/ws/policy/Assertion.html">Assertion</a> assertion) {
+<a name="40" href="#40">40</a>  		<strong>if</strong> (!(isNormalized() &amp;&amp; (assertion instanceof AndCompositeAssertion) &amp;&amp; ((AndCompositeAssertion) assertion)
+<a name="41" href="#41">41</a>  				.isNormalized())) {
+<a name="42" href="#42">42</a>  			setNormalized(false);
+<a name="43" href="#43">43</a>  		}
+<a name="44" href="#44">44</a>  		<strong>super</strong>.addTerm(assertion);
+<a name="45" href="#45">45</a>  	}
+<a name="46" href="#46">46</a>  
+<a name="47" href="#47">47</a>  	<strong>public</strong> <a href="../../../../org/apache/ws/policy/Assertion.html">Assertion</a> normalize(<a href="../../../../org/apache/ws/policy/util/PolicyRegistry.html">PolicyRegistry</a> reg) {
+<a name="48" href="#48">48</a>  		log.debug(<span class="string">"Enter: XorCompositeAssertion::normalize"</span>);
+<a name="49" href="#49">49</a>  
+<a name="50" href="#50">50</a>  		<strong>if</strong> (isNormalized()) {
+<a name="51" href="#51">51</a>  			<strong>return</strong> <strong>this</strong>;
+<a name="52" href="#52">52</a>  		}
+<a name="53" href="#53">53</a>  
+<a name="54" href="#54">54</a>  		XorCompositeAssertion XOR = <strong>new</strong> <a href="../../../../org/apache/ws/policy/XorCompositeAssertion.html">XorCompositeAssertion</a>();
+<a name="55" href="#55">55</a>  
+<a name="56" href="#56">56</a>  		<strong>if</strong> (isEmpty()) {
+<a name="57" href="#57">57</a>  			XOR.setNormalized(<strong>true</strong>);
+<a name="58" href="#58">58</a>  			<strong>return</strong> XOR;
+<a name="59" href="#59">59</a>  		}
+<a name="60" href="#60">60</a>  
+<a name="61" href="#61">61</a>  		Iterator terms = getTerms().iterator();
+<a name="62" href="#62">62</a>  
+<a name="63" href="#63">63</a>  		<strong>while</strong> (terms.hasNext()) {
+<a name="64" href="#64">64</a>  			Assertion term = (Assertion) terms.next();
+<a name="65" href="#65">65</a>  			term = (term instanceof Policy) ? term : term.normalize(reg);
+<a name="66" href="#66">66</a>  
+<a name="67" href="#67">67</a>  			<strong>if</strong> (term instanceof Policy) {
+<a name="68" href="#68">68</a>  				Assertion wrapper = <strong>new</strong> <a href="../../../../org/apache/ws/policy/AndCompositeAssertion.html">AndCompositeAssertion</a>();
+<a name="69" href="#69">69</a>  				((AndCompositeAssertion) wrapper).addTerms(((Policy) term)
+<a name="70" href="#70">70</a>  						.getTerms());
+<a name="71" href="#71">71</a>  				wrapper = wrapper.normalize(reg);
+<a name="72" href="#72">72</a>  
+<a name="73" href="#73">73</a>  				<strong>if</strong> (wrapper instanceof AndCompositeAssertion) {
+<a name="74" href="#74">74</a>  					XOR.addTerm(wrapper);
+<a name="75" href="#75">75</a>  
+<a name="76" href="#76">76</a>  				} <strong>else</strong> {
+<a name="77" href="#77">77</a>  					XOR.addTerms(((XorCompositeAssertion) wrapper).getTerms());
+<a name="78" href="#78">78</a>  				}
+<a name="79" href="#79">79</a>  				<strong>continue</strong>;
+<a name="80" href="#80">80</a>  			}
+<a name="81" href="#81">81</a>  
+<a name="82" href="#82">82</a>  			<strong>if</strong> (term instanceof PrimitiveAssertion) {
+<a name="83" href="#83">83</a>  				AndCompositeAssertion wrapper = <strong>new</strong> <a href="../../../../org/apache/ws/policy/AndCompositeAssertion.html">AndCompositeAssertion</a>();
+<a name="84" href="#84">84</a>  				wrapper.addTerm(term);
+<a name="85" href="#85">85</a>  				XOR.addTerm(wrapper);
+<a name="86" href="#86">86</a>  				<strong>continue</strong>;
+<a name="87" href="#87">87</a>  			}
+<a name="88" href="#88">88</a>  
+<a name="89" href="#89">89</a>  			<strong>if</strong> (term instanceof XorCompositeAssertion) {
+<a name="90" href="#90">90</a>  				XOR.addTerms(((XorCompositeAssertion) term).getTerms());
+<a name="91" href="#91">91</a>  				<strong>continue</strong>;
+<a name="92" href="#92">92</a>  			}
+<a name="93" href="#93">93</a>  
+<a name="94" href="#94">94</a>  			<strong>if</strong> (term instanceof AndCompositeAssertion) {
+<a name="95" href="#95">95</a>  				XOR.addTerm(term);
+<a name="96" href="#96">96</a>  			}
+<a name="97" href="#97">97</a>  		}
+<a name="98" href="#98">98</a>  
+<a name="99" href="#99">99</a>  		XOR.setNormalized(<strong>true</strong>);
+<a name="100" href="#100">100</a> 		<strong>return</strong> XOR;
+<a name="101" href="#101">101</a> 	}
+<a name="102" href="#102">102</a> 
+<a name="103" href="#103">103</a> 	<strong>public</strong> <a href="../../../../org/apache/ws/policy/Assertion.html">Assertion</a> intersect(<a href="../../../../org/apache/ws/policy/Assertion.html">Assertion</a> assertion, <a href="../../../../org/apache/ws/policy/util/PolicyRegistry.html">PolicyRegistry</a> reg) {
+<a name="104" href="#104">104</a> 		log.debug(<span class="string">"Enter: XorCompositeAssertion::intersect"</span>);
+<a name="105" href="#105">105</a> 
+<a name="106" href="#106">106</a> 		Assertion normalizedMe = (isNormalized()) ? <strong>this</strong> : normalize(reg);
+<a name="107" href="#107">107</a> 
+<a name="108" href="#108">108</a> 		<strong>if</strong> (!(normalizedMe instanceof XorCompositeAssertion)) {
+<a name="109" href="#109">109</a> 			<strong>return</strong> normalizedMe.intersect(assertion, reg);
+<a name="110" href="#110">110</a> 		}
+<a name="111" href="#111">111</a> 
+<a name="112" href="#112">112</a> 		Assertion target = (assertion.isNormalized()) ? assertion : assertion
+<a name="113" href="#113">113</a> 				.normalize(reg);
+<a name="114" href="#114">114</a> 		<strong>short</strong> type = target.getType();
+<a name="115" href="#115">115</a> 
+<a name="116" href="#116">116</a> 		<strong>switch</strong> (type) {
+<a name="117" href="#117">117</a> 
+<a name="118" href="#118">118</a> 		<strong>case</strong> Assertion.COMPOSITE_POLICY_TYPE: {
+<a name="119" href="#119">119</a> 			Policy nPOLICY = <strong>new</strong> <a href="../../../../org/apache/ws/policy/Policy.html">Policy</a>();
+<a name="120" href="#120">120</a> 			nPOLICY.addTerm(((XorCompositeAssertion) normalizedMe.getTerms()
+<a name="121" href="#121">121</a> 					.get(0)).intersect(target));
+<a name="122" href="#122">122</a> 			<strong>return</strong> nPOLICY;
+<a name="123" href="#123">123</a> 		}
+<a name="124" href="#124">124</a> 
+<a name="125" href="#125">125</a> 		<strong>case</strong> Assertion.COMPOSITE_XOR_TYPE: {
+<a name="126" href="#126">126</a> 			XorCompositeAssertion nXOR = <strong>new</strong> <a href="../../../../org/apache/ws/policy/XorCompositeAssertion.html">XorCompositeAssertion</a>();
+<a name="127" href="#127">127</a> 
+<a name="128" href="#128">128</a> 			Assertion asser;
+<a name="129" href="#129">129</a> 			AndCompositeAssertion AND;
+<a name="130" href="#130">130</a> 
+<a name="131" href="#131">131</a> 			<strong>for</strong> (Iterator iterator = normalizedMe.getTerms().iterator(); iterator
+<a name="132" href="#132">132</a> 					.hasNext();) {
+<a name="133" href="#133">133</a> 				AND = (AndCompositeAssertion) iterator.next();
+<a name="134" href="#134">134</a> 
+<a name="135" href="#135">135</a> 				<strong>for</strong> (Iterator iterator2 = target.getTerms().iterator(); iterator2
+<a name="136" href="#136">136</a> 						.hasNext();) {
+<a name="137" href="#137">137</a> 					asser = AND.intersect((AndCompositeAssertion) iterator2
+<a name="138" href="#138">138</a> 							.next());
+<a name="139" href="#139">139</a> 
+<a name="140" href="#140">140</a> 					<strong>if</strong> (asser instanceof AndCompositeAssertion) {
+<a name="141" href="#141">141</a> 						nXOR.addTerm(asser);
+<a name="142" href="#142">142</a> 					}
+<a name="143" href="#143">143</a> 				}
+<a name="144" href="#144">144</a> 			}
+<a name="145" href="#145">145</a> 
+<a name="146" href="#146">146</a> 			<strong>return</strong> nXOR;
+<a name="147" href="#147">147</a> 		}
+<a name="148" href="#148">148</a> 
+<a name="149" href="#149">149</a> 		<strong>case</strong> Assertion.COMPOSITE_AND_TYPE: {
+<a name="150" href="#150">150</a> 			XorCompositeAssertion nXOR = <strong>new</strong> <a href="../../../../org/apache/ws/policy/XorCompositeAssertion.html">XorCompositeAssertion</a>();
+<a name="151" href="#151">151</a> 			Assertion asser;
+<a name="152" href="#152">152</a> 
+<a name="153" href="#153">153</a> 			<strong>for</strong> (Iterator iterator = normalizedMe.getTerms().iterator(); iterator
+<a name="154" href="#154">154</a> 					.hasNext();) {
+<a name="155" href="#155">155</a> 				asser = ((AndCompositeAssertion) iterator.next())
+<a name="156" href="#156">156</a> 						.intersect(target);
+<a name="157" href="#157">157</a> 
+<a name="158" href="#158">158</a> 				<strong>if</strong> (asser instanceof AndCompositeAssertion) {
+<a name="159" href="#159">159</a> 					nXOR.addTerm(asser);
+<a name="160" href="#160">160</a> 				}
+<a name="161" href="#161">161</a> 			}
+<a name="162" href="#162">162</a> 			<strong>return</strong> nXOR;
+<a name="163" href="#163">163</a> 		}
+<a name="164" href="#164">164</a> 
+<a name="165" href="#165">165</a> 		<strong>case</strong> Assertion.PRIMITIVE_TYPE: {
+<a name="166" href="#166">166</a> 			XorCompositeAssertion nXOR = <strong>new</strong> <a href="../../../../org/apache/ws/policy/XorCompositeAssertion.html">XorCompositeAssertion</a>();
+<a name="167" href="#167">167</a> 
+<a name="168" href="#168">168</a> 			Assertion asser;
+<a name="169" href="#169">169</a> 
+<a name="170" href="#170">170</a> 			<strong>for</strong> (Iterator iterator = normalizedMe.getTerms().iterator(); iterator
+<a name="171" href="#171">171</a> 					.hasNext();) {
+<a name="172" href="#172">172</a> 				asser = ((AndCompositeAssertion) iterator.next())
+<a name="173" href="#173">173</a> 						.intersect(target);
+<a name="174" href="#174">174</a> 
+<a name="175" href="#175">175</a> 				<strong>if</strong> (asser instanceof AndCompositeAssertion) {
+<a name="176" href="#176">176</a> 					nXOR.addTerm(asser);
+<a name="177" href="#177">177</a> 				}
+<a name="178" href="#178">178</a> 			}
+<a name="179" href="#179">179</a> 			<strong>return</strong> nXOR;
+<a name="180" href="#180">180</a> 		}
+<a name="181" href="#181">181</a> 
+<a name="182" href="#182">182</a> 		<strong>default</strong>: {
+<a name="183" href="#183">183</a> 			<strong>throw</strong> <strong>new</strong> IllegalArgumentException(<span class="string">"intersect for assertion type "</span>
+<a name="184" href="#184">184</a> 					+ target.getClass().getName() + <span class="string">" not defined"</span>);
+<a name="185" href="#185">185</a> 		}
+<a name="186" href="#186">186</a> 
+<a name="187" href="#187">187</a> 		}
+<a name="188" href="#188">188</a> 	}
+<a name="189" href="#189">189</a> 
+<a name="190" href="#190">190</a> 	<strong>public</strong> <a href="../../../../org/apache/ws/policy/Assertion.html">Assertion</a> merge(<a href="../../../../org/apache/ws/policy/Assertion.html">Assertion</a> assertion, <a href="../../../../org/apache/ws/policy/util/PolicyRegistry.html">PolicyRegistry</a> reg) {
+<a name="191" href="#191">191</a> 		log.debug(<span class="string">"Enter: XorCompositeAssertion::merge"</span>);
+<a name="192" href="#192">192</a> 
+<a name="193" href="#193">193</a> 		Assertion normalizedMe = (isNormalized()) ? <strong>this</strong> : normalize(reg);
+<a name="194" href="#194">194</a> 
+<a name="195" href="#195">195</a> 		<strong>if</strong> (!(normalizedMe instanceof XorCompositeAssertion)) {
+<a name="196" href="#196">196</a> 			<strong>return</strong> normalizedMe.merge(assertion, reg);
+<a name="197" href="#197">197</a> 		}
+<a name="198" href="#198">198</a> 
+<a name="199" href="#199">199</a> 		Assertion target = (assertion.isNormalized()) ? assertion : assertion
+<a name="200" href="#200">200</a> 				.normalize(reg);
+<a name="201" href="#201">201</a> 
+<a name="202" href="#202">202</a> 		<strong>short</strong> type = target.getType();
+<a name="203" href="#203">203</a> 
+<a name="204" href="#204">204</a> 		<strong>switch</strong> (type) {
+<a name="205" href="#205">205</a> 
+<a name="206" href="#206">206</a> 		<strong>case</strong> Assertion.COMPOSITE_POLICY_TYPE: {
+<a name="207" href="#207">207</a> 
+<a name="208" href="#208">208</a> 			Policy nPOLICY = <strong>new</strong> <a href="../../../../org/apache/ws/policy/Policy.html">Policy</a>();
+<a name="209" href="#209">209</a> 			nPOLICY.addTerm(normalizedMe.merge((Assertion) target.getTerms()
+<a name="210" href="#210">210</a> 					.get(0)));
+<a name="211" href="#211">211</a> 			<strong>return</strong> nPOLICY;
+<a name="212" href="#212">212</a> 		}
+<a name="213" href="#213">213</a> 
+<a name="214" href="#214">214</a> 		<strong>case</strong> Assertion.COMPOSITE_XOR_TYPE: {
+<a name="215" href="#215">215</a> 
+<a name="216" href="#216">216</a> 			XorCompositeAssertion nXOR = <strong>new</strong> <a href="../../../../org/apache/ws/policy/XorCompositeAssertion.html">XorCompositeAssertion</a>();
+<a name="217" href="#217">217</a> 
+<a name="218" href="#218">218</a> 			<strong>for</strong> (Iterator iterator = normalizedMe.getTerms().iterator(); iterator
+<a name="219" href="#219">219</a> 					.hasNext();) {
+<a name="220" href="#220">220</a> 				AndCompositeAssertion AND = (AndCompositeAssertion) iterator
+<a name="221" href="#221">221</a> 						.next();
+<a name="222" href="#222">222</a> 
+<a name="223" href="#223">223</a> 				<strong>for</strong> (Iterator iterator2 = target.getTerms().iterator(); iterator2
+<a name="224" href="#224">224</a> 						.hasNext();) {
+<a name="225" href="#225">225</a> 					nXOR.addTerm(AND.merge((Assertion) iterator2.next()));
+<a name="226" href="#226">226</a> 				}
+<a name="227" href="#227">227</a> 
+<a name="228" href="#228">228</a> 				<strong>if</strong> (target.isEmpty() &amp;&amp; AND.isEmpty()) { <em class="comment">// FIXME is this a</em>
+<a name="229" href="#229">229</a> 					<em class="comment">// hack?</em>
+<a name="230" href="#230">230</a> 					<em class="comment">/*</em>
+<a name="231" href="#231">231</a> <em class="comment">					 * " &lt;wsp:ExactlyOne> &lt;wsp:All/></em>
+<a name="232" href="#232">232</a> <em class="comment">					 * &lt;/wsp:ExactlyOne>".intersect(" &lt;wsp:ExactlyOne/>")</em>
+<a name="233" href="#233">233</a> <em class="comment">					 */</em>
+<a name="234" href="#234">234</a> 					nXOR.addTerm(AND);
+<a name="235" href="#235">235</a> 				}
+<a name="236" href="#236">236</a> 			}
+<a name="237" href="#237">237</a> 
+<a name="238" href="#238">238</a> 			<strong>return</strong> nXOR;
+<a name="239" href="#239">239</a> 		}
+<a name="240" href="#240">240</a> 
+<a name="241" href="#241">241</a> 		<strong>case</strong> Assertion.COMPOSITE_AND_TYPE: {
+<a name="242" href="#242">242</a> 
+<a name="243" href="#243">243</a> 			XorCompositeAssertion nXOR = <strong>new</strong> <a href="../../../../org/apache/ws/policy/XorCompositeAssertion.html">XorCompositeAssertion</a>();
+<a name="244" href="#244">244</a> 
+<a name="245" href="#245">245</a> 			<strong>for</strong> (Iterator iterator = normalizedMe.getTerms().iterator(); iterator
+<a name="246" href="#246">246</a> 					.hasNext();) {
+<a name="247" href="#247">247</a> 				nXOR.addTerm(((AndCompositeAssertion) iterator.next())
+<a name="248" href="#248">248</a> 						.merge(target));
+<a name="249" href="#249">249</a> 			}
+<a name="250" href="#250">250</a> 			<strong>return</strong> nXOR;
+<a name="251" href="#251">251</a> 
+<a name="252" href="#252">252</a> 		}
+<a name="253" href="#253">253</a> 
+<a name="254" href="#254">254</a> 		<strong>case</strong> Assertion.PRIMITIVE_TYPE: {
+<a name="255" href="#255">255</a> 			XorCompositeAssertion nXOR = <strong>new</strong> <a href="../../../../org/apache/ws/policy/XorCompositeAssertion.html">XorCompositeAssertion</a>();
+<a name="256" href="#256">256</a> 
+<a name="257" href="#257">257</a> 			<strong>for</strong> (Iterator iterator = normalizedMe.getTerms().iterator(); iterator
+<a name="258" href="#258">258</a> 					.hasNext();) {
+<a name="259" href="#259">259</a> 				nXOR.addTerm(((AndCompositeAssertion) iterator.next())
+<a name="260" href="#260">260</a> 						.merge(target));
+<a name="261" href="#261">261</a> 			}
+<a name="262" href="#262">262</a> 
+<a name="263" href="#263">263</a> 			<strong>return</strong> nXOR;
+<a name="264" href="#264">264</a> 		}
+<a name="265" href="#265">265</a> 
+<a name="266" href="#266">266</a> 		<strong>default</strong>: {
+<a name="267" href="#267">267</a> 			<strong>throw</strong> <strong>new</strong> IllegalArgumentException(<span class="string">"merge is not defined for "</span>
+<a name="268" href="#268">268</a> 					+ target.getClass().getName() + <span class="string">" type assertions"</span>);
+<a name="269" href="#269">269</a> 		}
+<a name="270" href="#270">270</a> 
+<a name="271" href="#271">271</a> 		}
+<a name="272" href="#272">272</a> 	}
+<a name="273" href="#273">273</a> 
+<a name="274" href="#274">274</a> 	<strong>public</strong> <strong>final</strong> <strong>short</strong> getType() {
+<a name="275" href="#275">275</a> 		<strong>return</strong> Assertion.COMPOSITE_XOR_TYPE;
+<a name="276" href="#276">276</a> 	}
+<a name="277" href="#277">277</a> }
+</pre>
+<hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
+</html>
+

Added: webservices/commons/site/policy/xref/org/apache/ws/policy/package-frame.html
URL: http://svn.apache.org/viewcvs/webservices/commons/site/policy/xref/org/apache/ws/policy/package-frame.html?rev=385473&view=auto
==============================================================================
--- webservices/commons/site/policy/xref/org/apache/ws/policy/package-frame.html (added)
+++ webservices/commons/site/policy/xref/org/apache/ws/policy/package-frame.html Mon Mar 13 01:11:07 2006
@@ -0,0 +1,59 @@
+
+
+  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
+  <html xmlns="http://www.w3.org/1999/xhtml lang="en">
+    <head>
+      <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"></meta>
+      <title>WS-Policy Implementation 0.92-SNAPSHOT Reference Package org.apache.ws.policy</title>
+      <link rel="stylesheet" href="\.\./\.\./\.\./\.\./stylesheet.css" type="text/css" title="style"></link>
+    </head>
+    <body>
+
+      <h3>
+        <a href="package-summary.html" target="classFrame">org.apache.ws.policy</a>
+      </h3>
+
+      <h3>Classes</h3>
+
+      <ul>
+        
+          <li>
+            <a href="AbstractAssertion.html" target="classFrame">AbstractAssertion</a>
+          </li>
+        
+          <li>
+            <a href="AndCompositeAssertion.html" target="classFrame">AndCompositeAssertion</a>
+          </li>
+        
+          <li>
+            <a href="Assertion.html" target="classFrame">Assertion</a>
+          </li>
+        
+          <li>
+            <a href="CompositeAssertion.html" target="classFrame">CompositeAssertion</a>
+          </li>
+        
+          <li>
+            <a href="Policy.html" target="classFrame">Policy</a>
+          </li>
+        
+          <li>
+            <a href="PolicyConstants.html" target="classFrame">PolicyConstants</a>
+          </li>
+        
+          <li>
+            <a href="PolicyReference.html" target="classFrame">PolicyReference</a>
+          </li>
+        
+          <li>
+            <a href="PrimitiveAssertion.html" target="classFrame">PrimitiveAssertion</a>
+          </li>
+        
+          <li>
+            <a href="XorCompositeAssertion.html" target="classFrame">XorCompositeAssertion</a>
+          </li>
+        
+      </ul>
+
+    </body>
+  </html>

Added: webservices/commons/site/policy/xref/org/apache/ws/policy/package-summary.html
URL: http://svn.apache.org/viewcvs/webservices/commons/site/policy/xref/org/apache/ws/policy/package-summary.html?rev=385473&view=auto
==============================================================================
--- webservices/commons/site/policy/xref/org/apache/ws/policy/package-summary.html (added)
+++ webservices/commons/site/policy/xref/org/apache/ws/policy/package-summary.html Mon Mar 13 01:11:07 2006
@@ -0,0 +1,150 @@
+
+
+  
+
+  
+    
+
+    
+
+    
+
+  
+      <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
+      <html xmlns="http://www.w3.org/1999/xhtml lang="en">
+        <head>
+          <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"></meta>
+          <title>WS-Policy Implementation 0.92-SNAPSHOT Reference Package </title>
+          <link rel="stylesheet" href="\.\./\.\./\.\./\.\./stylesheet.css" type="text/css" title="style"></link>
+        </head>
+        <body>
+
+          
+      
+      
+
+      <div class="overview">
+        <ul>
+          <li>
+            <a href="\.\./\.\./\.\./\.\./overview-summary.html">Overview</a>
+          </li>
+          <li class="selected">Package</li>
+        </ul>
+      </div>
+      <div class="framenoframe">
+        <ul>
+          <li>
+            <a href="\.\./\.\./\.\./\.\./index.html" target="_top">FRAMES</a>
+          </li>
+          <li>
+            <a href="package-summary.html" target="_top">NO FRAMES</a>
+          </li>
+        </ul>
+      </div>
+
+      
+
+    
+      
+      <h2>Package org.apache.ws.policy</h2>
+
+      <table class="summary">
+        <thead>
+          <tr>
+            <th>Class Summary</th>
+          </tr>
+        </thead>
+
+        <tbody>
+          
+            <tr>
+              <td>
+                <a href="AbstractAssertion.html" target="classFrame">AbstractAssertion</a>
+              </td>
+            </tr>
+          
+            <tr>
+              <td>
+                <a href="AndCompositeAssertion.html" target="classFrame">AndCompositeAssertion</a>
+              </td>
+            </tr>
+          
+            <tr>
+              <td>
+                <a href="Assertion.html" target="classFrame">Assertion</a>
+              </td>
+            </tr>
+          
+            <tr>
+              <td>
+                <a href="CompositeAssertion.html" target="classFrame">CompositeAssertion</a>
+              </td>
+            </tr>
+          
+            <tr>
+              <td>
+                <a href="Policy.html" target="classFrame">Policy</a>
+              </td>
+            </tr>
+          
+            <tr>
+              <td>
+                <a href="PolicyConstants.html" target="classFrame">PolicyConstants</a>
+              </td>
+            </tr>
+          
+            <tr>
+              <td>
+                <a href="PolicyReference.html" target="classFrame">PolicyReference</a>
+              </td>
+            </tr>
+          
+            <tr>
+              <td>
+                <a href="PrimitiveAssertion.html" target="classFrame">PrimitiveAssertion</a>
+              </td>
+            </tr>
+          
+            <tr>
+              <td>
+                <a href="XorCompositeAssertion.html" target="classFrame">XorCompositeAssertion</a>
+              </td>
+            </tr>
+          
+        </tbody>
+      </table>
+
+    
+      
+      
+
+      <div class="overview">
+        <ul>
+          <li>
+            <a href="\.\./\.\./\.\./\.\./overview-summary.html">Overview</a>
+          </li>
+          <li class="selected">Package</li>
+        </ul>
+      </div>
+      <div class="framenoframe">
+        <ul>
+          <li>
+            <a href="\.\./\.\./\.\./\.\./index.html" target="_top">FRAMES</a>
+          </li>
+          <li>
+            <a href="package-summary.html" target="_top">NO FRAMES</a>
+          </li>
+        </ul>
+      </div>
+
+      
+
+    
+    
+
+          <hr></hr>
+
+          Copyright &copy; 2002-2006 Apache Software Foundation. All Rights Reserved.
+        </body>
+      </html>
+    

Added: webservices/commons/site/policy/xref/org/apache/ws/policy/util/DOMPolicyReader.html
URL: http://svn.apache.org/viewcvs/webservices/commons/site/policy/xref/org/apache/ws/policy/util/DOMPolicyReader.html?rev=385473&view=auto
==============================================================================
--- webservices/commons/site/policy/xref/org/apache/ws/policy/util/DOMPolicyReader.html (added)
+++ webservices/commons/site/policy/xref/org/apache/ws/policy/util/DOMPolicyReader.html Mon Mar 13 01:11:07 2006
@@ -0,0 +1,238 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" /><title>DOMPolicyReader xref</title>
+<link type="text/css" rel="stylesheet" href="../../../../../stylesheet.css" />
+</head>
+<body>
+<div id="overview"><a href="../../../../../../apidocs/org/apache/ws/policy/util/DOMPolicyReader.html">View Javadoc</a></div><pre>
+
+<a name="1" href="#1">1</a>   <em class="comment">/*</em>
+<a name="2" href="#2">2</a>   <em class="comment"> * Copyright 2001-2004 The Apache Software Foundation.</em>
+<a name="3" href="#3">3</a>   <em class="comment"> * </em>
+<a name="4" href="#4">4</a>   <em class="comment"> * Licensed under the Apache License, Version 2.0 (the "License");</em>
+<a name="5" href="#5">5</a>   <em class="comment"> * you may not use this file except in compliance with the License.</em>
+<a name="6" href="#6">6</a>   <em class="comment"> * You may obtain a copy of the License at</em>
+<a name="7" href="#7">7</a>   <em class="comment"> * </em>
+<a name="8" href="#8">8</a>   <em class="comment"> *      <a href="http://www.apache.org/licenses/LICENSE-2.0" target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0</a></em>
+<a name="9" href="#9">9</a>   <em class="comment"> * </em>
+<a name="10" href="#10">10</a>  <em class="comment"> * Unless required by applicable law or agreed to in writing, software</em>
+<a name="11" href="#11">11</a>  <em class="comment"> * distributed under the License is distributed on an "AS IS" BASIS,</em>
+<a name="12" href="#12">12</a>  <em class="comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</em>
+<a name="13" href="#13">13</a>  <em class="comment"> * See the License for the specific language governing permissions and</em>
+<a name="14" href="#14">14</a>  <em class="comment"> * limitations under the License.</em>
+<a name="15" href="#15">15</a>  <em class="comment"> */</em>
+<a name="16" href="#16">16</a>  
+<a name="17" href="#17">17</a>  <strong>package</strong> <a href="../../../../../org/apache/ws/policy/util/package-summary.html">org.apache.ws.policy.util</a>;
+<a name="18" href="#18">18</a>  
+<a name="19" href="#19">19</a>  <strong>import</strong> java.io.IOException;
+<a name="20" href="#20">20</a>  <strong>import</strong> java.io.InputStream;
+<a name="21" href="#21">21</a>  <strong>import</strong> java.util.ArrayList;
+<a name="22" href="#22">22</a>  <strong>import</strong> java.util.Hashtable;
+<a name="23" href="#23">23</a>  
+<a name="24" href="#24">24</a>  <strong>import</strong> javax.xml.parsers.DocumentBuilder;
+<a name="25" href="#25">25</a>  <strong>import</strong> javax.xml.parsers.DocumentBuilderFactory;
+<a name="26" href="#26">26</a>  <strong>import</strong> javax.xml.parsers.ParserConfigurationException;
+<a name="27" href="#27">27</a>  
+<a name="28" href="#28">28</a>  <strong>import</strong> javax.xml.namespace.QName;
+<a name="29" href="#29">29</a>  
+<a name="30" href="#30">30</a>  <strong>import</strong> org.w3c.dom.Attr;
+<a name="31" href="#31">31</a>  <strong>import</strong> org.w3c.dom.Document;
+<a name="32" href="#32">32</a>  <strong>import</strong> org.w3c.dom.Element;
+<a name="33" href="#33">33</a>  <strong>import</strong> org.w3c.dom.Node;
+<a name="34" href="#34">34</a>  <strong>import</strong> org.w3c.dom.NodeList;
+<a name="35" href="#35">35</a>  <strong>import</strong> org.w3c.dom.NamedNodeMap;
+<a name="36" href="#36">36</a>  <strong>import</strong> org.xml.sax.SAXException;
+<a name="37" href="#37">37</a>  
+<a name="38" href="#38">38</a>  <strong>import</strong> org.apache.ws.policy.AndCompositeAssertion;
+<a name="39" href="#39">39</a>  <strong>import</strong> org.apache.ws.policy.Assertion;
+<a name="40" href="#40">40</a>  <strong>import</strong> org.apache.ws.policy.Policy;
+<a name="41" href="#41">41</a>  <strong>import</strong> org.apache.ws.policy.PolicyReference;
+<a name="42" href="#42">42</a>  <strong>import</strong> org.apache.ws.policy.PrimitiveAssertion;
+<a name="43" href="#43">43</a>  <strong>import</strong> org.apache.ws.policy.PolicyConstants;
+<a name="44" href="#44">44</a>  <strong>import</strong> org.apache.ws.policy.XorCompositeAssertion;
+<a name="45" href="#45">45</a>  
+<a name="46" href="#46">46</a>  <em>/**<em>*</em></em>
+<a name="47" href="#47">47</a>  <em> * DOMPolicyReader implements PolicyReader and provides different methods to</em>
+<a name="48" href="#48">48</a>  <em> * create a policy object. It uses DOM as it underlying mechanism to XML.</em>
+<a name="49" href="#49">49</a>  <em> * </em>
+<a name="50" href="#50">50</a>  <em> * @author Werner Dittmann (werner@apache.org)</em>
+<a name="51" href="#51">51</a>  <em> * @author Sanka Samaranayake (sanka@apache.org)</em>
+<a name="52" href="#52">52</a>  <em> */</em>
+<a name="53" href="#53">53</a>  <strong>public</strong> <strong>class</strong> <a href="../../../../../org/apache/ws/policy/util/DOMPolicyReader.html">DOMPolicyReader</a> implements <a href="../../../../../org/apache/ws/policy/util/PolicyReader.html">PolicyReader</a> {
+<a name="54" href="#54">54</a>  	<strong>public</strong> <strong>static</strong> <strong>final</strong> String XMLNS_NS_URI = <span class="string">"http://www.w3.org/2000/xmlns/"</span>;
+<a name="55" href="#55">55</a>  
+<a name="56" href="#56">56</a>  	DOMPolicyReader() {
+<a name="57" href="#57">57</a>  	}
+<a name="58" href="#58">58</a>  
+<a name="59" href="#59">59</a>  	<strong>public</strong> <a href="../../../../../org/apache/ws/policy/Policy.html">Policy</a> readPolicy(InputStream in) {
+<a name="60" href="#60">60</a>  		<strong>try</strong> {
+<a name="61" href="#61">61</a>  			DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
+<a name="62" href="#62">62</a>  
+<a name="63" href="#63">63</a>  			dbf.setNamespaceAware(<strong>true</strong>);
+<a name="64" href="#64">64</a>  			dbf.setValidating(false);
+<a name="65" href="#65">65</a>  
+<a name="66" href="#66">66</a>  			DocumentBuilder db = dbf.newDocumentBuilder();
+<a name="67" href="#67">67</a>  			Document doc = db.parse(in);
+<a name="68" href="#68">68</a>  			Element element = doc.getDocumentElement();
+<a name="69" href="#69">69</a>  			<strong>return</strong> readPolicy(element);
+<a name="70" href="#70">70</a>  		} <strong>catch</strong> (ParserConfigurationException e) {
+<a name="71" href="#71">71</a>  			e.printStackTrace();
+<a name="72" href="#72">72</a>  			<strong>throw</strong> <strong>new</strong> RuntimeException(<span class="string">"error : "</span> + e.getMessage());
+<a name="73" href="#73">73</a>  		} <strong>catch</strong> (SAXException e) {
+<a name="74" href="#74">74</a>  			e.printStackTrace();
+<a name="75" href="#75">75</a>  			<strong>throw</strong> <strong>new</strong> RuntimeException(<span class="string">"error : "</span> + e.getMessage());
+<a name="76" href="#76">76</a>  		} <strong>catch</strong> (IOException e) {
+<a name="77" href="#77">77</a>  			e.printStackTrace();
+<a name="78" href="#78">78</a>  			<strong>throw</strong> <strong>new</strong> RuntimeException(<span class="string">"error : "</span> + e.getMessage());
+<a name="79" href="#79">79</a>  		}
+<a name="80" href="#80">80</a>  	}
+<a name="81" href="#81">81</a>  
+<a name="82" href="#82">82</a>  	<strong>private</strong> <a href="../../../../../org/apache/ws/policy/Assertion.html">Assertion</a> readAssertion(Element element) {
+<a name="83" href="#83">83</a>  		String namespace = element.getNamespaceURI();
+<a name="84" href="#84">84</a>  		String localName = element.getLocalName();
+<a name="85" href="#85">85</a>  
+<a name="86" href="#86">86</a>  		<strong>if</strong> (!(namespace.equals(PolicyConstants.WS_POLICY_NAMESPACE_URI))) {
+<a name="87" href="#87">87</a>  			<strong>return</strong> readPrimitiveAssertion(element);
+<a name="88" href="#88">88</a>  		}
+<a name="89" href="#89">89</a>  
+<a name="90" href="#90">90</a>  		<strong>if</strong> (localName.equals(PolicyConstants.WS_POLICY)) {
+<a name="91" href="#91">91</a>  			<strong>return</strong> readPolicy(element);
+<a name="92" href="#92">92</a>  
+<a name="93" href="#93">93</a>  		} <strong>else</strong> <strong>if</strong> (localName.equals(PolicyConstants.AND_COMPOSITE_ASSERTION)) {
+<a name="94" href="#94">94</a>  			<strong>return</strong> readAndComposite(element);
+<a name="95" href="#95">95</a>  
+<a name="96" href="#96">96</a>  		} <strong>else</strong> <strong>if</strong> (localName.equals(PolicyConstants.XOR_COMPOSITE_ASSERTION)) {
+<a name="97" href="#97">97</a>  			<strong>return</strong> readXorComposite(element);
+<a name="98" href="#98">98</a>  
+<a name="99" href="#99">99</a>  		} <strong>else</strong> <strong>if</strong> (localName.equals(PolicyConstants.WS_POLICY_REFERENCE)) {
+<a name="100" href="#100">100</a> 			<strong>return</strong> readPolicyReference(element);
+<a name="101" href="#101">101</a> 
+<a name="102" href="#102">102</a> 		} <strong>else</strong> {
+<a name="103" href="#103">103</a> 			<strong>throw</strong> <strong>new</strong> RuntimeException(<span class="string">"unknown element .."</span>);
+<a name="104" href="#104">104</a> 		}
+<a name="105" href="#105">105</a> 	}
+<a name="106" href="#106">106</a> 
+<a name="107" href="#107">107</a> 	<strong>public</strong> <a href="../../../../../org/apache/ws/policy/Policy.html">Policy</a> readPolicy(Element element) {
+<a name="108" href="#108">108</a> 		Policy policy = <strong>new</strong> <a href="../../../../../org/apache/ws/policy/Policy.html">Policy</a>();
+<a name="109" href="#109">109</a> 		Attr attri;
+<a name="110" href="#110">110</a> 		attri = element.getAttributeNodeNS(PolicyConstants.WSU_NAMESPACE_URI,
+<a name="111" href="#111">111</a> 				<span class="string">"Id"</span>);
+<a name="112" href="#112">112</a> 		<strong>if</strong> (attri != <strong>null</strong>) {
+<a name="113" href="#113">113</a> 			policy.setId(attri.getValue());
+<a name="114" href="#114">114</a> 		}
+<a name="115" href="#115">115</a> 
+<a name="116" href="#116">116</a> 		attri = element.getAttributeNodeNS(PolicyConstants.XML_NAMESPACE_URI,
+<a name="117" href="#117">117</a> 				<span class="string">"base"</span>);
+<a name="118" href="#118">118</a> 		<strong>if</strong> (attri != <strong>null</strong>) {
+<a name="119" href="#119">119</a> 			policy.setBase(attri.getValue());
+<a name="120" href="#120">120</a> 		}
+<a name="121" href="#121">121</a> 
+<a name="122" href="#122">122</a> 		policy.addTerms(readTerms(element));
+<a name="123" href="#123">123</a> 		<strong>return</strong> policy;
+<a name="124" href="#124">124</a> 	}
+<a name="125" href="#125">125</a> 
+<a name="126" href="#126">126</a> 	<strong>private</strong> <a href="../../../../../org/apache/ws/policy/AndCompositeAssertion.html">AndCompositeAssertion</a> readAndComposite(Element element) {
+<a name="127" href="#127">127</a> 		AndCompositeAssertion andCompositeAssertion = <strong>new</strong> <a href="../../../../../org/apache/ws/policy/AndCompositeAssertion.html">AndCompositeAssertion</a>();
+<a name="128" href="#128">128</a> 		andCompositeAssertion.addTerms(readTerms(element));
+<a name="129" href="#129">129</a> 		<strong>return</strong> andCompositeAssertion;
+<a name="130" href="#130">130</a> 	}
+<a name="131" href="#131">131</a> 
+<a name="132" href="#132">132</a> 	<strong>private</strong> <a href="../../../../../org/apache/ws/policy/XorCompositeAssertion.html">XorCompositeAssertion</a> readXorComposite(Element element) {
+<a name="133" href="#133">133</a> 		XorCompositeAssertion xorCompositeAssertion = <strong>new</strong> <a href="../../../../../org/apache/ws/policy/XorCompositeAssertion.html">XorCompositeAssertion</a>();
+<a name="134" href="#134">134</a> 		xorCompositeAssertion.addTerms(readTerms(element));
+<a name="135" href="#135">135</a> 		<strong>return</strong> xorCompositeAssertion;
+<a name="136" href="#136">136</a> 	}
+<a name="137" href="#137">137</a> 
+<a name="138" href="#138">138</a> 	<strong>public</strong> <a href="../../../../../org/apache/ws/policy/PolicyReference.html">PolicyReference</a> readPolicyReference(Element element) {
+<a name="139" href="#139">139</a> 		Attr attribute = element.getAttributeNode(<span class="string">"URI"</span>);
+<a name="140" href="#140">140</a> 		<strong>return</strong> <strong>new</strong> <a href="../../../../../org/apache/ws/policy/PolicyReference.html">PolicyReference</a>(attribute.getValue());
+<a name="141" href="#141">141</a> 	}
+<a name="142" href="#142">142</a> 
+<a name="143" href="#143">143</a> 	<strong>private</strong> <a href="../../../../../org/apache/ws/policy/PrimitiveAssertion.html">PrimitiveAssertion</a> readPrimitiveAssertion(Element element) {
+<a name="144" href="#144">144</a> 		QName qname = <strong>new</strong> QName(element.getNamespaceURI(), element
+<a name="145" href="#145">145</a> 				.getLocalName(), element.getPrefix());
+<a name="146" href="#146">146</a> 		PrimitiveAssertion result = <strong>new</strong> <a href="../../../../../org/apache/ws/policy/PrimitiveAssertion.html">PrimitiveAssertion</a>(qname);
+<a name="147" href="#147">147</a> 
+<a name="148" href="#148">148</a> 		result.setAttributes(getAttributes(element));
+<a name="149" href="#149">149</a> 		String isOptional = result.getAttribute(<strong>new</strong> QName(
+<a name="150" href="#150">150</a> 				PolicyConstants.WS_POLICY_NAMESPACE_URI, <span class="string">"Optional"</span>));
+<a name="151" href="#151">151</a> 		result.setOptional(<strong>new</strong> Boolean(isOptional).booleanValue());
+<a name="152" href="#152">152</a> 
+<a name="153" href="#153">153</a> 		<em class="comment">//CHECK ME</em>
+<a name="154" href="#154">154</a> 		NodeList list = element.getChildNodes();
+<a name="155" href="#155">155</a> 		<strong>int</strong> length = list.getLength();
+<a name="156" href="#156">156</a> 
+<a name="157" href="#157">157</a> 		<strong>for</strong> (<strong>int</strong> i = 0; i &lt; length; i++) {
+<a name="158" href="#158">158</a> 			Node node = list.item(i);
+<a name="159" href="#159">159</a> 			<strong>short</strong> nodeType = node.getNodeType();
+<a name="160" href="#160">160</a> 
+<a name="161" href="#161">161</a> 			<strong>if</strong> (nodeType == Node.ELEMENT_NODE) {
+<a name="162" href="#162">162</a> 				Element childElement = (Element) node;
+<a name="163" href="#163">163</a> 				<strong>if</strong> (childElement.getNamespaceURI().equals(
+<a name="164" href="#164">164</a> 						PolicyConstants.WS_POLICY_NAMESPACE_URI)
+<a name="165" href="#165">165</a> 						&amp;&amp; childElement.getLocalName().equals(
+<a name="166" href="#166">166</a> 								PolicyConstants.WS_POLICY)) {
+<a name="167" href="#167">167</a> 					Policy policy = readPolicy(childElement);
+<a name="168" href="#168">168</a> 					result.addTerm(policy);
+<a name="169" href="#169">169</a> 
+<a name="170" href="#170">170</a> 				} <strong>else</strong> {
+<a name="171" href="#171">171</a> 					PrimitiveAssertion pa = readPrimitiveAssertion(childElement);
+<a name="172" href="#172">172</a> 					result.addTerm(pa);
+<a name="173" href="#173">173</a> 				}
+<a name="174" href="#174">174</a> 			} <strong>else</strong> <strong>if</strong> (nodeType == Node.TEXT_NODE) {
+<a name="175" href="#175">175</a> 				String strValue = node.getNodeValue();
+<a name="176" href="#176">176</a> 
+<a name="177" href="#177">177</a> 				<strong>if</strong> (strValue != <strong>null</strong> &amp;&amp; strValue.length() != 0) {
+<a name="178" href="#178">178</a> 					result.setStrValue(strValue);
+<a name="179" href="#179">179</a> 				}
+<a name="180" href="#180">180</a> 			}
+<a name="181" href="#181">181</a> 		}
+<a name="182" href="#182">182</a> 		<strong>return</strong> result;
+<a name="183" href="#183">183</a> 	}
+<a name="184" href="#184">184</a> 
+<a name="185" href="#185">185</a> 	<strong>private</strong> ArrayList readTerms(Element element) {
+<a name="186" href="#186">186</a> 		ArrayList terms = <strong>new</strong> ArrayList();
+<a name="187" href="#187">187</a> 		NodeList list = element.getChildNodes();
+<a name="188" href="#188">188</a> 		<strong>int</strong> length = list.getLength();
+<a name="189" href="#189">189</a> 
+<a name="190" href="#190">190</a> 		<strong>for</strong> (<strong>int</strong> i = 0; i &lt; length; i++) {
+<a name="191" href="#191">191</a> 			Object obj = list.item(i);
+<a name="192" href="#192">192</a> 
+<a name="193" href="#193">193</a> 			<strong>if</strong> (obj instanceof Element) {
+<a name="194" href="#194">194</a> 				Element e = (Element) obj;
+<a name="195" href="#195">195</a> 				terms.add(readAssertion(e));
+<a name="196" href="#196">196</a> 			}
+<a name="197" href="#197">197</a> 		}
+<a name="198" href="#198">198</a> 		<strong>return</strong> terms;
+<a name="199" href="#199">199</a> 	}
+<a name="200" href="#200">200</a> 
+<a name="201" href="#201">201</a> 	<strong>private</strong> Hashtable getAttributes(Element element) {
+<a name="202" href="#202">202</a> 		Hashtable attributes = <strong>new</strong> Hashtable();
+<a name="203" href="#203">203</a> 		NamedNodeMap map = element.getAttributes();
+<a name="204" href="#204">204</a> 
+<a name="205" href="#205">205</a> 		<strong>int</strong> length = map.getLength();
+<a name="206" href="#206">206</a> 
+<a name="207" href="#207">207</a> 		<strong>for</strong> (<strong>int</strong> i = 0; i &lt; length; i++) {
+<a name="208" href="#208">208</a> 			Attr attribute = (Attr) map.item(i);
+<a name="209" href="#209">209</a> 			<strong>if</strong> (!XMLNS_NS_URI.equals(attribute.getNamespaceURI())) {
+<a name="210" href="#210">210</a> 				String prefix = attribute.getPrefix();
+<a name="211" href="#211">211</a> 				QName qn = <strong>null</strong>;
+<a name="212" href="#212">212</a> 				<strong>if</strong> (prefix != <strong>null</strong>) {
+<a name="213" href="#213">213</a> 					qn = <strong>new</strong> QName(attribute.getNamespaceURI(), attribute
+<a name="214" href="#214">214</a> 							.getLocalName(), prefix);
+<a name="215" href="#215">215</a> 				} <strong>else</strong> {
+<a name="216" href="#216">216</a> 					qn = <strong>new</strong> QName(attribute.getNamespaceURI(), attribute
+<a name="217" href="#217">217</a> 							.getLocalName());
+<a name="218" href="#218">218</a> 				}
+<a name="219" href="#219">219</a> 				attributes.put(qn, attribute.getValue());
+<a name="220" href="#220">220</a> 			}
+<a name="221" href="#221">221</a> 
+<a name="222" href="#222">222</a> 		}
+<a name="223" href="#223">223</a> 		<strong>return</strong> attributes;
+<a name="224" href="#224">224</a> 	}
+<a name="225" href="#225">225</a> }
+</pre>
+<hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
+</html>
+

Added: webservices/commons/site/policy/xref/org/apache/ws/policy/util/Loader.html
URL: http://svn.apache.org/viewcvs/webservices/commons/site/policy/xref/org/apache/ws/policy/util/Loader.html?rev=385473&view=auto
==============================================================================
--- webservices/commons/site/policy/xref/org/apache/ws/policy/util/Loader.html (added)
+++ webservices/commons/site/policy/xref/org/apache/ws/policy/util/Loader.html Mon Mar 13 01:11:07 2006
@@ -0,0 +1,186 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" /><title>Loader xref</title>
+<link type="text/css" rel="stylesheet" href="../../../../../stylesheet.css" />
+</head>
+<body>
+<div id="overview"><a href="../../../../../../apidocs/org/apache/ws/policy/util/Loader.html">View Javadoc</a></div><pre>
+
+<a name="1" href="#1">1</a>   <em class="comment">/*</em>
+<a name="2" href="#2">2</a>   <em class="comment"> * Copyright  2003-2004 The Apache Software Foundation.</em>
+<a name="3" href="#3">3</a>   <em class="comment"> *</em>
+<a name="4" href="#4">4</a>   <em class="comment"> *  Licensed under the Apache License, Version 2.0 (the "License");</em>
+<a name="5" href="#5">5</a>   <em class="comment"> *  you may not use this file except in compliance with the License.</em>
+<a name="6" href="#6">6</a>   <em class="comment"> *  You may obtain a copy of the License at</em>
+<a name="7" href="#7">7</a>   <em class="comment"> *</em>
+<a name="8" href="#8">8</a>   <em class="comment"> *      <a href="http://www.apache.org/licenses/LICENSE-2.0" target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0</a></em>
+<a name="9" href="#9">9</a>   <em class="comment"> *</em>
+<a name="10" href="#10">10</a>  <em class="comment"> *  Unless required by applicable law or agreed to in writing, software</em>
+<a name="11" href="#11">11</a>  <em class="comment"> *  distributed under the License is distributed on an "AS IS" BASIS,</em>
+<a name="12" href="#12">12</a>  <em class="comment"> *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</em>
+<a name="13" href="#13">13</a>  <em class="comment"> *  See the License for the specific language governing permissions and</em>
+<a name="14" href="#14">14</a>  <em class="comment"> *  limitations under the License.</em>
+<a name="15" href="#15">15</a>  <em class="comment"> *</em>
+<a name="16" href="#16">16</a>  <em class="comment"> */</em>
+<a name="17" href="#17">17</a>  
+<a name="18" href="#18">18</a>  <strong>package</strong> <a href="../../../../../org/apache/ws/policy/util/package-summary.html">org.apache.ws.policy.util</a>;
+<a name="19" href="#19">19</a>  
+<a name="20" href="#20">20</a>  <strong>import</strong> org.apache.commons.logging.Log;
+<a name="21" href="#21">21</a>  <strong>import</strong> org.apache.commons.logging.LogFactory;
+<a name="22" href="#22">22</a>  
+<a name="23" href="#23">23</a>  <strong>import</strong> java.lang.reflect.InvocationTargetException;
+<a name="24" href="#24">24</a>  <strong>import</strong> java.net.URL;
+<a name="25" href="#25">25</a>  
+<a name="26" href="#26">26</a>  <em>/**<em>*</em></em>
+<a name="27" href="#27">27</a>  <em> * Load resources (or images) from various sources. &lt;p/></em>
+<a name="28" href="#28">28</a>  <em> * </em>
+<a name="29" href="#29">29</a>  <em> * @author Davanum Srinivas (dims@yahoo.com).</em>
+<a name="30" href="#30">30</a>  <em> */</em>
+<a name="31" href="#31">31</a>  <strong>public</strong> <strong>class</strong> <a href="../../../../../org/apache/ws/policy/util/Loader.html">Loader</a> {
+<a name="32" href="#32">32</a>  	<strong>private</strong> <strong>static</strong> Log log = LogFactory.getLog(Loader.<strong>class</strong>.getName());
+<a name="33" href="#33">33</a>  
+<a name="34" href="#34">34</a>  	<em>/**<em>*</em></em>
+<a name="35" href="#35">35</a>  <em>	 * This method will search for &lt;code>resource&lt;/code> in different places.</em>
+<a name="36" href="#36">36</a>  <em>	 * The rearch order is as follows:</em>
+<a name="37" href="#37">37</a>  <em>	 * &lt;ol></em>
+<a name="38" href="#38">38</a>  <em>	 * &lt;p></em>
+<a name="39" href="#39">39</a>  <em>	 * &lt;li>Search for &lt;code>resource&lt;/code> using the thread context class</em>
+<a name="40" href="#40">40</a>  <em>	 * loader under Java2. If that fails, search for &lt;code>resource&lt;/code></em>
+<a name="41" href="#41">41</a>  <em>	 * using the class loader that loaded this class (&lt;code>Loader&lt;/code>).</em>
+<a name="42" href="#42">42</a>  <em>	 * &lt;p></em>
+<a name="43" href="#43">43</a>  <em>	 * &lt;li>Try one last time with</em>
+<a name="44" href="#44">44</a>  <em>	 * &lt;code>ClassLoader.getSystemResource(resource)&lt;/code>, that is is using</em>
+<a name="45" href="#45">45</a>  <em>	 * the system class loader in JDK 1.2 and virtual machine's built-in class</em>
+<a name="46" href="#46">46</a>  <em>	 * loader in JDK 1.1.</em>
+<a name="47" href="#47">47</a>  <em>	 * &lt;/ol></em>
+<a name="48" href="#48">48</a>  <em>	 * &lt;p/></em>
+<a name="49" href="#49">49</a>  <em>	 * </em>
+<a name="50" href="#50">50</a>  <em>	 * @param resource</em>
+<a name="51" href="#51">51</a>  <em>	 * @return TODO</em>
+<a name="52" href="#52">52</a>  <em>	 */</em>
+<a name="53" href="#53">53</a>  	<strong>static</strong> <strong>public</strong> URL getResource(String resource) {
+<a name="54" href="#54">54</a>  		ClassLoader classLoader = <strong>null</strong>;
+<a name="55" href="#55">55</a>  		URL url = <strong>null</strong>;
+<a name="56" href="#56">56</a>  		<strong>try</strong> {
+<a name="57" href="#57">57</a>  			<em class="comment">// We could not find resource. Ler us now try with the</em>
+<a name="58" href="#58">58</a>  			<em class="comment">// classloader that loaded this class.</em>
+<a name="59" href="#59">59</a>  			classLoader = getTCL();
+<a name="60" href="#60">60</a>  			<strong>if</strong> (classLoader != <strong>null</strong>) {
+<a name="61" href="#61">61</a>  				log.debug(<span class="string">"Trying to find ["</span> + resource + <span class="string">"] using "</span>
+<a name="62" href="#62">62</a>  						+ classLoader + <span class="string">" class loader."</span>);
+<a name="63" href="#63">63</a>  				url = classLoader.getResource(resource);
+<a name="64" href="#64">64</a>  				<strong>if</strong> (url != <strong>null</strong>) {
+<a name="65" href="#65">65</a>  					<strong>return</strong> url;
+<a name="66" href="#66">66</a>  				}
+<a name="67" href="#67">67</a>  			}
+<a name="68" href="#68">68</a>  		} <strong>catch</strong> (Throwable t) {
+<a name="69" href="#69">69</a>  			log
+<a name="70" href="#70">70</a>  					.warn(
+<a name="71" href="#71">71</a>  							<span class="string">"Caught Exception while in Loader.getResource. This may be innocuous."</span>,
+<a name="72" href="#72">72</a>  							t);
+<a name="73" href="#73">73</a>  		}
+<a name="74" href="#74">74</a>  
+<a name="75" href="#75">75</a>  		<em class="comment">// Last ditch attempt: get the resource from the class path. It</em>
+<a name="76" href="#76">76</a>  		<em class="comment">// may be the case that clazz was loaded by the Extentsion class</em>
+<a name="77" href="#77">77</a>  		<em class="comment">// loader which the parent of the system class loader. Hence the</em>
+<a name="78" href="#78">78</a>  		<em class="comment">// code below.</em>
+<a name="79" href="#79">79</a>  		log.debug(<span class="string">"Trying to find ["</span> + resource
+<a name="80" href="#80">80</a>  				+ <span class="string">"] using ClassLoader.getSystemResource()."</span>);
+<a name="81" href="#81">81</a>  		<strong>return</strong> ClassLoader.getSystemResource(resource);
+<a name="82" href="#82">82</a>  	}
+<a name="83" href="#83">83</a>  
+<a name="84" href="#84">84</a>  	<em>/**<em>*</em></em>
+<a name="85" href="#85">85</a>  <em>	 * Try to get the resource with the specified class loader &lt;p/></em>
+<a name="86" href="#86">86</a>  <em>	 * </em>
+<a name="87" href="#87">87</a>  <em>	 * @param loader</em>
+<a name="88" href="#88">88</a>  <em>	 *            The classloader to use</em>
+<a name="89" href="#89">89</a>  <em>	 * @param resource</em>
+<a name="90" href="#90">90</a>  <em>	 *            The resources' path</em>
+<a name="91" href="#91">91</a>  <em>	 * @return The URL of the resource</em>
+<a name="92" href="#92">92</a>  <em>	 * @throws ClassNotFoundException</em>
+<a name="93" href="#93">93</a>  <em>	 */</em>
+<a name="94" href="#94">94</a>  	<strong>static</strong> <strong>public</strong> URL getResource(ClassLoader loader, String resource)
+<a name="95" href="#95">95</a>  			throws ClassNotFoundException {
+<a name="96" href="#96">96</a>  		URL url = <strong>null</strong>;
+<a name="97" href="#97">97</a>  		<strong>try</strong> {
+<a name="98" href="#98">98</a>  			<strong>if</strong> (loader != <strong>null</strong>) {
+<a name="99" href="#99">99</a>  				log.debug(<span class="string">"Trying to find ["</span> + resource + <span class="string">"] using "</span> + loader
+<a name="100" href="#100">100</a> 						+ <span class="string">" class loader."</span>);
+<a name="101" href="#101">101</a> 				url = loader.getResource(resource);
+<a name="102" href="#102">102</a> 				<strong>if</strong> (url != <strong>null</strong>) {
+<a name="103" href="#103">103</a> 					<strong>return</strong> url;
+<a name="104" href="#104">104</a> 				}
+<a name="105" href="#105">105</a> 			}
+<a name="106" href="#106">106</a> 		} <strong>catch</strong> (Throwable t) {
+<a name="107" href="#107">107</a> 			log
+<a name="108" href="#108">108</a> 					.warn(
+<a name="109" href="#109">109</a> 							<span class="string">"Caught Exception while in Loader.getResource. This may be innocuous."</span>,
+<a name="110" href="#110">110</a> 							t);
+<a name="111" href="#111">111</a> 		}
+<a name="112" href="#112">112</a> 		<strong>return</strong> getResource(resource);
+<a name="113" href="#113">113</a> 	}
+<a name="114" href="#114">114</a> 
+<a name="115" href="#115">115</a> 	<em>/**<em>*</em></em>
+<a name="116" href="#116">116</a> <em>	 * Get the Thread context class loader. &lt;p/></em>
+<a name="117" href="#117">117</a> <em>	 * </em>
+<a name="118" href="#118">118</a> <em>	 * @return</em>
+<a name="119" href="#119">119</a> <em>	 * @throws IllegalAccessException</em>
+<a name="120" href="#120">120</a> <em>	 * @throws InvocationTargetException</em>
+<a name="121" href="#121">121</a> <em>	 */</em>
+<a name="122" href="#122">122</a> 	<strong>static</strong> <strong>public</strong> ClassLoader getTCL() throws IllegalAccessException,
+<a name="123" href="#123">123</a> 			InvocationTargetException {
+<a name="124" href="#124">124</a> 		<strong>return</strong> Thread.currentThread().getContextClassLoader();
+<a name="125" href="#125">125</a> 	}
+<a name="126" href="#126">126</a> 
+<a name="127" href="#127">127</a> 	<em>/**<em>*</em></em>
+<a name="128" href="#128">128</a> <em>	 * Try the specified classloader and then fall back to the loadClass &lt;p/></em>
+<a name="129" href="#129">129</a> <em>	 * </em>
+<a name="130" href="#130">130</a> <em>	 * @param loader</em>
+<a name="131" href="#131">131</a> <em>	 * @param clazz</em>
+<a name="132" href="#132">132</a> <em>	 * @return Class</em>
+<a name="133" href="#133">133</a> <em>	 * @throws ClassNotFoundException</em>
+<a name="134" href="#134">134</a> <em>	 */</em>
+<a name="135" href="#135">135</a> 	<strong>static</strong> <strong>public</strong> Class loadClass(ClassLoader loader, String clazz)
+<a name="136" href="#136">136</a> 			throws ClassNotFoundException {
+<a name="137" href="#137">137</a> 		<strong>try</strong> {
+<a name="138" href="#138">138</a> 			<strong>if</strong> (loader != <strong>null</strong>) {
+<a name="139" href="#139">139</a> 				Class c = loader.loadClass(clazz);
+<a name="140" href="#140">140</a> 				<strong>if</strong> (c != <strong>null</strong>)
+<a name="141" href="#141">141</a> 					<strong>return</strong> c;
+<a name="142" href="#142">142</a> 			}
+<a name="143" href="#143">143</a> 		} <strong>catch</strong> (Throwable e) {
+<a name="144" href="#144">144</a> 		}
+<a name="145" href="#145">145</a> 		<strong>return</strong> loadClass(clazz);
+<a name="146" href="#146">146</a> 	}
+<a name="147" href="#147">147</a> 
+<a name="148" href="#148">148</a> 	<em>/**<em>*</em></em>
+<a name="149" href="#149">149</a> <em>	 * If running under JDK 1.2 load the specified class using the</em>
+<a name="150" href="#150">150</a> <em>	 * &lt;code>Thread&lt;/code> &lt;code>contextClassLoader&lt;/code> if that fails try</em>
+<a name="151" href="#151">151</a> <em>	 * Class.forname. &lt;p/></em>
+<a name="152" href="#152">152</a> <em>	 * </em>
+<a name="153" href="#153">153</a> <em>	 * @param clazz</em>
+<a name="154" href="#154">154</a> <em>	 * @return TODO</em>
+<a name="155" href="#155">155</a> <em>	 * @throws ClassNotFoundException</em>
+<a name="156" href="#156">156</a> <em>	 */</em>
+<a name="157" href="#157">157</a> 	<strong>static</strong> <strong>public</strong> Class loadClass(String clazz) throws ClassNotFoundException {
+<a name="158" href="#158">158</a> 		<strong>try</strong> {
+<a name="159" href="#159">159</a> 			ClassLoader tcl = getTCL();
+<a name="160" href="#160">160</a> 
+<a name="161" href="#161">161</a> 			<strong>if</strong> (tcl != <strong>null</strong>) {
+<a name="162" href="#162">162</a> 				Class c = tcl.loadClass(clazz);
+<a name="163" href="#163">163</a> 				<strong>if</strong> (c != <strong>null</strong>)
+<a name="164" href="#164">164</a> 					<strong>return</strong> c;
+<a name="165" href="#165">165</a> 			}
+<a name="166" href="#166">166</a> 		} <strong>catch</strong> (Throwable e) {
+<a name="167" href="#167">167</a> 		}
+<a name="168" href="#168">168</a> 		<em class="comment">// we reached here because tcl was null or because of a</em>
+<a name="169" href="#169">169</a> 		<em class="comment">// security exception, or because clazz could not be loaded...</em>
+<a name="170" href="#170">170</a> 		<em class="comment">// In any case we now try one more time</em>
+<a name="171" href="#171">171</a> 		<strong>return</strong> Class.forName(clazz);
+<a name="172" href="#172">172</a> 	}
+<a name="173" href="#173">173</a> }
+</pre>
+<hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
+</html>
+

Added: webservices/commons/site/policy/xref/org/apache/ws/policy/util/OMPolicyReader.html
URL: http://svn.apache.org/viewcvs/webservices/commons/site/policy/xref/org/apache/ws/policy/util/OMPolicyReader.html?rev=385473&view=auto
==============================================================================
--- webservices/commons/site/policy/xref/org/apache/ws/policy/util/OMPolicyReader.html (added)
+++ webservices/commons/site/policy/xref/org/apache/ws/policy/util/OMPolicyReader.html Mon Mar 13 01:11:07 2006
@@ -0,0 +1,207 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" /><title>OMPolicyReader xref</title>
+<link type="text/css" rel="stylesheet" href="../../../../../stylesheet.css" />
+</head>
+<body>
+<div id="overview"><a href="../../../../../../apidocs/org/apache/ws/policy/util/OMPolicyReader.html">View Javadoc</a></div><pre>
+
+<a name="1" href="#1">1</a>   <em class="comment">/*</em>
+<a name="2" href="#2">2</a>   <em class="comment"> * Copyright 2001-2004 The Apache Software Foundation.</em>
+<a name="3" href="#3">3</a>   <em class="comment"> * </em>
+<a name="4" href="#4">4</a>   <em class="comment"> * Licensed under the Apache License, Version 2.0 (the "License");</em>
+<a name="5" href="#5">5</a>   <em class="comment"> * you may not use this file except in compliance with the License.</em>
+<a name="6" href="#6">6</a>   <em class="comment"> * You may obtain a copy of the License at</em>
+<a name="7" href="#7">7</a>   <em class="comment"> * </em>
+<a name="8" href="#8">8</a>   <em class="comment"> *      <a href="http://www.apache.org/licenses/LICENSE-2.0" target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0</a></em>
+<a name="9" href="#9">9</a>   <em class="comment"> * </em>
+<a name="10" href="#10">10</a>  <em class="comment"> * Unless required by applicable law or agreed to in writing, software</em>
+<a name="11" href="#11">11</a>  <em class="comment"> * distributed under the License is distributed on an "AS IS" BASIS,</em>
+<a name="12" href="#12">12</a>  <em class="comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</em>
+<a name="13" href="#13">13</a>  <em class="comment"> * See the License for the specific language governing permissions and</em>
+<a name="14" href="#14">14</a>  <em class="comment"> * limitations under the License.</em>
+<a name="15" href="#15">15</a>  <em class="comment"> */</em>
+<a name="16" href="#16">16</a>  
+<a name="17" href="#17">17</a>  <strong>package</strong> <a href="../../../../../org/apache/ws/policy/util/package-summary.html">org.apache.ws.policy.util</a>;
+<a name="18" href="#18">18</a>  
+<a name="19" href="#19">19</a>  <strong>import</strong> java.io.InputStream;
+<a name="20" href="#20">20</a>  <strong>import</strong> java.util.ArrayList;
+<a name="21" href="#21">21</a>  <strong>import</strong> java.util.Hashtable;
+<a name="22" href="#22">22</a>  <strong>import</strong> java.util.Iterator;
+<a name="23" href="#23">23</a>  
+<a name="24" href="#24">24</a>  <strong>import</strong> javax.xml.namespace.QName;
+<a name="25" href="#25">25</a>  <strong>import</strong> javax.xml.stream.XMLInputFactory;
+<a name="26" href="#26">26</a>  <strong>import</strong> javax.xml.stream.XMLStreamException;
+<a name="27" href="#27">27</a>  <strong>import</strong> javax.xml.stream.XMLStreamReader;
+<a name="28" href="#28">28</a>  
+<a name="29" href="#29">29</a>  <strong>import</strong> org.apache.ws.commons.om.OMAbstractFactory;
+<a name="30" href="#30">30</a>  <strong>import</strong> org.apache.ws.commons.om.OMAttribute;
+<a name="31" href="#31">31</a>  <strong>import</strong> org.apache.ws.commons.om.OMElement;
+<a name="32" href="#32">32</a>  <strong>import</strong> org.apache.ws.commons.om.OMXMLParserWrapper;
+<a name="33" href="#33">33</a>  <strong>import</strong> org.apache.ws.commons.om.impl.llom.factory.OMXMLBuilderFactory;
+<a name="34" href="#34">34</a>  <strong>import</strong> org.apache.ws.policy.AndCompositeAssertion;
+<a name="35" href="#35">35</a>  <strong>import</strong> org.apache.ws.policy.Assertion;
+<a name="36" href="#36">36</a>  <strong>import</strong> org.apache.ws.policy.Policy;
+<a name="37" href="#37">37</a>  <strong>import</strong> org.apache.ws.policy.PolicyReference;
+<a name="38" href="#38">38</a>  <strong>import</strong> org.apache.ws.policy.PrimitiveAssertion;
+<a name="39" href="#39">39</a>  <strong>import</strong> org.apache.ws.policy.PolicyConstants;
+<a name="40" href="#40">40</a>  <strong>import</strong> org.apache.ws.policy.XorCompositeAssertion;
+<a name="41" href="#41">41</a>  
+<a name="42" href="#42">42</a>  <em>/**<em>*</em></em>
+<a name="43" href="#43">43</a>  <em> * OMPolicyReader implements PolicyReader interface and provides different</em>
+<a name="44" href="#44">44</a>  <em> * methods to create a policy object It ueses AxisOM as its underlying mechanism</em>
+<a name="45" href="#45">45</a>  <em> * to process XML.</em>
+<a name="46" href="#46">46</a>  <em> * </em>
+<a name="47" href="#47">47</a>  <em> * @author Sanka Samaranayake (sanka@apache.org)</em>
+<a name="48" href="#48">48</a>  <em> */</em>
+<a name="49" href="#49">49</a>  <strong>public</strong> <strong>class</strong> <a href="../../../../../org/apache/ws/policy/util/OMPolicyReader.html">OMPolicyReader</a> implements <a href="../../../../../org/apache/ws/policy/util/PolicyReader.html">PolicyReader</a> {
+<a name="50" href="#50">50</a>  	OMPolicyReader() {
+<a name="51" href="#51">51</a>  	}
+<a name="52" href="#52">52</a>  
+<a name="53" href="#53">53</a>  	<strong>public</strong> <a href="../../../../../org/apache/ws/policy/Policy.html">Policy</a> readPolicy(InputStream in) {
+<a name="54" href="#54">54</a>  		<strong>try</strong> {
+<a name="55" href="#55">55</a>  			XMLStreamReader reader = XMLInputFactory.newInstance()
+<a name="56" href="#56">56</a>  					.createXMLStreamReader(in);
+<a name="57" href="#57">57</a>  			OMXMLParserWrapper builder = OMXMLBuilderFactory
+<a name="58" href="#58">58</a>  					.createStAXOMBuilder(OMAbstractFactory.getOMFactory(),
+<a name="59" href="#59">59</a>  							reader);
+<a name="60" href="#60">60</a>  
+<a name="61" href="#61">61</a>  			OMElement element = builder.getDocumentElement();
+<a name="62" href="#62">62</a>  			<strong>return</strong> readPolicy(element);
+<a name="63" href="#63">63</a>  
+<a name="64" href="#64">64</a>  		} <strong>catch</strong> (XMLStreamException ex) {
+<a name="65" href="#65">65</a>  			<strong>throw</strong> <strong>new</strong> RuntimeException(<span class="string">"error : "</span> + ex.getMessage());
+<a name="66" href="#66">66</a>  		}
+<a name="67" href="#67">67</a>  	}
+<a name="68" href="#68">68</a>  
+<a name="69" href="#69">69</a>  	<strong>private</strong> <a href="../../../../../org/apache/ws/policy/Assertion.html">Assertion</a> readAssertion(OMElement element) {
+<a name="70" href="#70">70</a>  		String namespace = element.getNamespace().getName();
+<a name="71" href="#71">71</a>  		String localName = element.getLocalName();
+<a name="72" href="#72">72</a>  
+<a name="73" href="#73">73</a>  		<strong>if</strong> (!(namespace.equals(PolicyConstants.WS_POLICY_NAMESPACE_URI))) {
+<a name="74" href="#74">74</a>  			<strong>return</strong> readPrimitiveAssertion(element);
+<a name="75" href="#75">75</a>  		}
+<a name="76" href="#76">76</a>  
+<a name="77" href="#77">77</a>  		<strong>if</strong> (localName.equals(PolicyConstants.WS_POLICY)) {
+<a name="78" href="#78">78</a>  			<strong>return</strong> readPolicy(element);
+<a name="79" href="#79">79</a>  
+<a name="80" href="#80">80</a>  		} <strong>else</strong> <strong>if</strong> (localName.equals(PolicyConstants.AND_COMPOSITE_ASSERTION)) {
+<a name="81" href="#81">81</a>  			<strong>return</strong> readAndComposite(element);
+<a name="82" href="#82">82</a>  
+<a name="83" href="#83">83</a>  		} <strong>else</strong> <strong>if</strong> (localName.equals(PolicyConstants.XOR_COMPOSITE_ASSERTION)) {
+<a name="84" href="#84">84</a>  			<strong>return</strong> readXorComposite(element);
+<a name="85" href="#85">85</a>  
+<a name="86" href="#86">86</a>  		} <strong>else</strong> <strong>if</strong> (localName.equals(PolicyConstants.WS_POLICY_REFERENCE)) {
+<a name="87" href="#87">87</a>  			<strong>return</strong> readPolicyReference(element);
+<a name="88" href="#88">88</a>  
+<a name="89" href="#89">89</a>  		} <strong>else</strong> {
+<a name="90" href="#90">90</a>  			<strong>throw</strong> <strong>new</strong> RuntimeException(<span class="string">"unknown element .."</span>);
+<a name="91" href="#91">91</a>  		}
+<a name="92" href="#92">92</a>  	}
+<a name="93" href="#93">93</a>  
+<a name="94" href="#94">94</a>  	<strong>public</strong> <a href="../../../../../org/apache/ws/policy/Policy.html">Policy</a> readPolicy(OMElement element) {
+<a name="95" href="#95">95</a>  		Policy policy = <strong>new</strong> <a href="../../../../../org/apache/ws/policy/Policy.html">Policy</a>();
+<a name="96" href="#96">96</a>  
+<a name="97" href="#97">97</a>  		OMAttribute attri;
+<a name="98" href="#98">98</a>  		attri = element.getAttribute(<strong>new</strong> QName(
+<a name="99" href="#99">99</a>  				PolicyConstants.WSU_NAMESPACE_URI, <span class="string">"Id"</span>));
+<a name="100" href="#100">100</a> 		<strong>if</strong> (attri != <strong>null</strong>) {
+<a name="101" href="#101">101</a> 			policy.setId(attri.getAttributeValue());
+<a name="102" href="#102">102</a> 		}
+<a name="103" href="#103">103</a> 		attri = element.getAttribute(<strong>new</strong> QName(
+<a name="104" href="#104">104</a> 				PolicyConstants.XML_NAMESPACE_URI, <span class="string">"base"</span>));
+<a name="105" href="#105">105</a> 		<strong>if</strong> (attri != <strong>null</strong>) {
+<a name="106" href="#106">106</a> 			policy.setBase(attri.getAttributeValue());
+<a name="107" href="#107">107</a> 		}
+<a name="108" href="#108">108</a> 
+<a name="109" href="#109">109</a> 		policy.addTerms(readTerms(element));
+<a name="110" href="#110">110</a> 		<strong>return</strong> policy;
+<a name="111" href="#111">111</a> 	}
+<a name="112" href="#112">112</a> 
+<a name="113" href="#113">113</a> 	<strong>private</strong> <a href="../../../../../org/apache/ws/policy/AndCompositeAssertion.html">AndCompositeAssertion</a> readAndComposite(OMElement element) {
+<a name="114" href="#114">114</a> 		AndCompositeAssertion andCompositeAssertion = <strong>new</strong> <a href="../../../../../org/apache/ws/policy/AndCompositeAssertion.html">AndCompositeAssertion</a>();
+<a name="115" href="#115">115</a> 		andCompositeAssertion.addTerms(readTerms(element));
+<a name="116" href="#116">116</a> 		<strong>return</strong> andCompositeAssertion;
+<a name="117" href="#117">117</a> 	}
+<a name="118" href="#118">118</a> 
+<a name="119" href="#119">119</a> 	<strong>private</strong> <a href="../../../../../org/apache/ws/policy/XorCompositeAssertion.html">XorCompositeAssertion</a> readXorComposite(OMElement element) {
+<a name="120" href="#120">120</a> 		XorCompositeAssertion xorCompositeAssertion = <strong>new</strong> <a href="../../../../../org/apache/ws/policy/XorCompositeAssertion.html">XorCompositeAssertion</a>();
+<a name="121" href="#121">121</a> 		xorCompositeAssertion.addTerms(readTerms(element));
+<a name="122" href="#122">122</a> 		<strong>return</strong> xorCompositeAssertion;
+<a name="123" href="#123">123</a> 	}
+<a name="124" href="#124">124</a> 
+<a name="125" href="#125">125</a> 	<strong>public</strong> <a href="../../../../../org/apache/ws/policy/PolicyReference.html">PolicyReference</a> readPolicyReference(OMElement element) {
+<a name="126" href="#126">126</a> 		OMAttribute attribute = element.getAttribute(<strong>new</strong> QName(<span class="string">"URI"</span>));
+<a name="127" href="#127">127</a> 		<strong>return</strong> <strong>new</strong> <a href="../../../../../org/apache/ws/policy/PolicyReference.html">PolicyReference</a>(attribute.getAttributeValue());
+<a name="128" href="#128">128</a> 	}
+<a name="129" href="#129">129</a> 
+<a name="130" href="#130">130</a> 	<strong>private</strong> <a href="../../../../../org/apache/ws/policy/PrimitiveAssertion.html">PrimitiveAssertion</a> readPrimitiveAssertion(OMElement element) {
+<a name="131" href="#131">131</a> 		QName qname = element.getQName();
+<a name="132" href="#132">132</a> 		PrimitiveAssertion result = <strong>new</strong> <a href="../../../../../org/apache/ws/policy/PrimitiveAssertion.html">PrimitiveAssertion</a>(qname);
+<a name="133" href="#133">133</a> 
+<a name="134" href="#134">134</a> 		result.setAttributes(getAttributes(element));
+<a name="135" href="#135">135</a> 
+<a name="136" href="#136">136</a> 		String isOptional = result.getAttribute(<strong>new</strong> QName(
+<a name="137" href="#137">137</a> 				PolicyConstants.WS_POLICY_NAMESPACE_URI, <span class="string">"Optional"</span>));
+<a name="138" href="#138">138</a> 		result.setOptional(<strong>new</strong> Boolean(isOptional).booleanValue());
+<a name="139" href="#139">139</a> 
+<a name="140" href="#140">140</a> 		<em class="comment">// setting the text value ..</em>
+<a name="141" href="#141">141</a> 		String strValue = element.getText();
+<a name="142" href="#142">142</a> 
+<a name="143" href="#143">143</a> 		<strong>if</strong> (strValue != <strong>null</strong> &amp;&amp; strValue.length() != 0) {
+<a name="144" href="#144">144</a> 			result.setStrValue(strValue.trim());
+<a name="145" href="#145">145</a> 		}
+<a name="146" href="#146">146</a> 
+<a name="147" href="#147">147</a> 		<em class="comment">//CHECK ME</em>
+<a name="148" href="#148">148</a> 		Iterator childElements = element.getChildElements();
+<a name="149" href="#149">149</a> 
+<a name="150" href="#150">150</a> 		<strong>while</strong> (childElements.hasNext()) {
+<a name="151" href="#151">151</a> 			OMElement childElement = (OMElement) childElements.next();
+<a name="152" href="#152">152</a> 
+<a name="153" href="#153">153</a> 			<strong>if</strong> (childElement.getNamespace().getName().equals(
+<a name="154" href="#154">154</a> 					PolicyConstants.WS_POLICY_NAMESPACE_URI)
+<a name="155" href="#155">155</a> 					&amp;&amp; childElement.getLocalName().equals(
+<a name="156" href="#156">156</a> 							PolicyConstants.WS_POLICY)) {
+<a name="157" href="#157">157</a> 				Policy policy = readPolicy(childElement);
+<a name="158" href="#158">158</a> 				result.addTerm(policy);
+<a name="159" href="#159">159</a> 
+<a name="160" href="#160">160</a> 			} <strong>else</strong> {
+<a name="161" href="#161">161</a> 				PrimitiveAssertion pa = readPrimitiveAssertion(childElement);
+<a name="162" href="#162">162</a> 				result.addTerm(pa);
+<a name="163" href="#163">163</a> 			}
+<a name="164" href="#164">164</a> 		}
+<a name="165" href="#165">165</a> 		<strong>return</strong> result;
+<a name="166" href="#166">166</a> 	}
+<a name="167" href="#167">167</a> 
+<a name="168" href="#168">168</a> 	<strong>private</strong> ArrayList readTerms(OMElement element) {
+<a name="169" href="#169">169</a> 		ArrayList terms = <strong>new</strong> ArrayList();
+<a name="170" href="#170">170</a> 		Iterator childElements = element.getChildren();
+<a name="171" href="#171">171</a> 
+<a name="172" href="#172">172</a> 		<strong>while</strong> (childElements.hasNext()) {
+<a name="173" href="#173">173</a> 			Object obj = childElements.next();
+<a name="174" href="#174">174</a> 
+<a name="175" href="#175">175</a> 			<strong>if</strong> (obj instanceof OMElement) {
+<a name="176" href="#176">176</a> 				OMElement e = (OMElement) obj;
+<a name="177" href="#177">177</a> 				terms.add(readAssertion(e));
+<a name="178" href="#178">178</a> 			}
+<a name="179" href="#179">179</a> 		}
+<a name="180" href="#180">180</a> 		<strong>return</strong> terms;
+<a name="181" href="#181">181</a> 	}
+<a name="182" href="#182">182</a> 
+<a name="183" href="#183">183</a> 	<strong>private</strong> Hashtable getAttributes(OMElement element) {
+<a name="184" href="#184">184</a> 		Hashtable attributes = <strong>new</strong> Hashtable();
+<a name="185" href="#185">185</a> 		Iterator iterator = element.getAllAttributes();
+<a name="186" href="#186">186</a> 
+<a name="187" href="#187">187</a> 		<strong>while</strong> (iterator.hasNext()) {
+<a name="188" href="#188">188</a> 			OMAttribute attribute = (OMAttribute) iterator.next();
+<a name="189" href="#189">189</a> 			attributes.put(attribute.getQName(), attribute.getAttributeValue());
+<a name="190" href="#190">190</a> 		}
+<a name="191" href="#191">191</a> 
+<a name="192" href="#192">192</a> 		<strong>return</strong> attributes;
+<a name="193" href="#193">193</a> 	}
+<a name="194" href="#194">194</a> }
+</pre>
+<hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
+</html>
+

Added: webservices/commons/site/policy/xref/org/apache/ws/policy/util/PolicyFactory.html
URL: http://svn.apache.org/viewcvs/webservices/commons/site/policy/xref/org/apache/ws/policy/util/PolicyFactory.html?rev=385473&view=auto
==============================================================================
--- webservices/commons/site/policy/xref/org/apache/ws/policy/util/PolicyFactory.html (added)
+++ webservices/commons/site/policy/xref/org/apache/ws/policy/util/PolicyFactory.html Mon Mar 13 01:11:07 2006
@@ -0,0 +1,115 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" /><title>PolicyFactory xref</title>
+<link type="text/css" rel="stylesheet" href="../../../../../stylesheet.css" />
+</head>
+<body>
+<div id="overview"><a href="../../../../../../apidocs/org/apache/ws/policy/util/PolicyFactory.html">View Javadoc</a></div><pre>
+
+<a name="1" href="#1">1</a>   <em class="comment">/*</em>
+<a name="2" href="#2">2</a>   <em class="comment"> * Copyright 2001-2004 The Apache Software Foundation.</em>
+<a name="3" href="#3">3</a>   <em class="comment"> * </em>
+<a name="4" href="#4">4</a>   <em class="comment"> * Licensed under the Apache License, Version 2.0 (the "License");</em>
+<a name="5" href="#5">5</a>   <em class="comment"> * you may not use this file except in compliance with the License.</em>
+<a name="6" href="#6">6</a>   <em class="comment"> * You may obtain a copy of the License at</em>
+<a name="7" href="#7">7</a>   <em class="comment"> * </em>
+<a name="8" href="#8">8</a>   <em class="comment"> *      <a href="http://www.apache.org/licenses/LICENSE-2.0" target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0</a></em>
+<a name="9" href="#9">9</a>   <em class="comment"> * </em>
+<a name="10" href="#10">10</a>  <em class="comment"> * Unless required by applicable law or agreed to in writing, software</em>
+<a name="11" href="#11">11</a>  <em class="comment"> * distributed under the License is distributed on an "AS IS" BASIS,</em>
+<a name="12" href="#12">12</a>  <em class="comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</em>
+<a name="13" href="#13">13</a>  <em class="comment"> * See the License for the specific language governing permissions and</em>
+<a name="14" href="#14">14</a>  <em class="comment"> * limitations under the License.</em>
+<a name="15" href="#15">15</a>  <em class="comment"> */</em>
+<a name="16" href="#16">16</a>  
+<a name="17" href="#17">17</a>  <strong>package</strong> <a href="../../../../../org/apache/ws/policy/util/package-summary.html">org.apache.ws.policy.util</a>;
+<a name="18" href="#18">18</a>  
+<a name="19" href="#19">19</a>  <em>/**<em>*</em></em>
+<a name="20" href="#20">20</a>  <em> * PolicyFactory is used to create PolicyReader / PolicyWriter objects of</em>
+<a name="21" href="#21">21</a>  <em> * different types.</em>
+<a name="22" href="#22">22</a>  <em> * </em>
+<a name="23" href="#23">23</a>  <em> * @author Sanka Samaranayake (sanka@apache.org)</em>
+<a name="24" href="#24">24</a>  <em> */</em>
+<a name="25" href="#25">25</a>  <strong>public</strong> <strong>class</strong> <a href="../../../../../org/apache/ws/policy/util/PolicyFactory.html">PolicyFactory</a> {
+<a name="26" href="#26">26</a>  	<strong>public</strong> <strong>static</strong> <strong>final</strong> <strong>int</strong> OM_POLICY_READER = 1;
+<a name="27" href="#27">27</a>  
+<a name="28" href="#28">28</a>  	<strong>public</strong> <strong>static</strong> <strong>final</strong> <strong>int</strong> StAX_POLICY_WRITER = 2;
+<a name="29" href="#29">29</a>  
+<a name="30" href="#30">30</a>  	<strong>public</strong> <strong>static</strong> <strong>final</strong> <strong>int</strong> DOM_POLICY_READER = 3;
+<a name="31" href="#31">31</a>  
+<a name="32" href="#32">32</a>  	<em>/**<em>*</em></em>
+<a name="33" href="#33">33</a>  <em>	 * Creates a specified type of PolicyReader object</em>
+<a name="34" href="#34">34</a>  <em>	 * </em>
+<a name="35" href="#35">35</a>  <em>	 * DOM_POLICY_READER : Uses DOM as its underlying mechanism to process XML.</em>
+<a name="36" href="#36">36</a>  <em>	 * </em>
+<a name="37" href="#37">37</a>  <em>	 * OM_POLICY_READER : Uses AXIOM as its underlying mechanism to process XML.</em>
+<a name="38" href="#38">38</a>  <em>	 * </em>
+<a name="39" href="#39">39</a>  <em>	 * @param type</em>
+<a name="40" href="#40">40</a>  <em>	 *            of the PolicyReader to create</em>
+<a name="41" href="#41">41</a>  <em>	 * @return an instance of a PolicyReader</em>
+<a name="42" href="#42">42</a>  <em>	 */</em>
+<a name="43" href="#43">43</a>  	<strong>public</strong> <strong>static</strong> <a href="../../../../../org/apache/ws/policy/util/PolicyReader.html">PolicyReader</a> getPolicyReader(<strong>int</strong> type) {
+<a name="44" href="#44">44</a>  		String name = <strong>null</strong>;
+<a name="45" href="#45">45</a>  		<strong>switch</strong> (type) {
+<a name="46" href="#46">46</a>  		<strong>case</strong> DOM_POLICY_READER:
+<a name="47" href="#47">47</a>  			name = <span class="string">"org.apache.ws.policy.util.DOMPolicyReader"</span>;
+<a name="48" href="#48">48</a>  			<strong>break</strong>;
+<a name="49" href="#49">49</a>  		<strong>case</strong> OM_POLICY_READER:
+<a name="50" href="#50">50</a>  			name = <span class="string">"org.apache.ws.policy.util.OMPolicyReader"</span>;
+<a name="51" href="#51">51</a>  			<strong>break</strong>;
+<a name="52" href="#52">52</a>  		<strong>default</strong>:
+<a name="53" href="#53">53</a>  			<strong>throw</strong> <strong>new</strong> IllegalArgumentException(<span class="string">"Unknown PolicyReader type .."</span>);
+<a name="54" href="#54">54</a>  		}
+<a name="55" href="#55">55</a>  		<strong>try</strong> {
+<a name="56" href="#56">56</a>  			<strong>return</strong> (PolicyReader) Loader.loadClass(name).newInstance();
+<a name="57" href="#57">57</a>  		} <strong>catch</strong> (InstantiationException e) {
+<a name="58" href="#58">58</a>  			<strong>throw</strong> <strong>new</strong> IllegalArgumentException(
+<a name="59" href="#59">59</a>  					<span class="string">"Cannot load PolicyReader type .."</span>);
+<a name="60" href="#60">60</a>  		} <strong>catch</strong> (IllegalAccessException e) {
+<a name="61" href="#61">61</a>  			<strong>throw</strong> <strong>new</strong> IllegalArgumentException(
+<a name="62" href="#62">62</a>  					<span class="string">"Cannot load PolicyReader type .."</span>);
+<a name="63" href="#63">63</a>  		} <strong>catch</strong> (ClassNotFoundException e) {
+<a name="64" href="#64">64</a>  			<strong>throw</strong> <strong>new</strong> IllegalArgumentException(
+<a name="65" href="#65">65</a>  					<span class="string">"Cannot load PolicyReader type .."</span>);
+<a name="66" href="#66">66</a>  		}
+<a name="67" href="#67">67</a>  	}
+<a name="68" href="#68">68</a>  
+<a name="69" href="#69">69</a>  	<em>/**<em>*</em></em>
+<a name="70" href="#70">70</a>  <em>	 * Create a specified type of PolicyWriter object</em>
+<a name="71" href="#71">71</a>  <em>	 * </em>
+<a name="72" href="#72">72</a>  <em>	 * STAX_POLICY_WRITER: Uses StAX as its underlying mechanism to create XML</em>
+<a name="73" href="#73">73</a>  <em>	 * elements.</em>
+<a name="74" href="#74">74</a>  <em>	 * </em>
+<a name="75" href="#75">75</a>  <em>	 * @param type</em>
+<a name="76" href="#76">76</a>  <em>	 *            of the RolicyWriter to create</em>
+<a name="77" href="#77">77</a>  <em>	 * @return an instance of PolicyWriter</em>
+<a name="78" href="#78">78</a>  <em>	 */</em>
+<a name="79" href="#79">79</a>  	<strong>public</strong> <strong>static</strong> <a href="../../../../../org/apache/ws/policy/util/PolicyWriter.html">PolicyWriter</a> getPolicyWriter(<strong>int</strong> type) {
+<a name="80" href="#80">80</a>  		String name = <strong>null</strong>;
+<a name="81" href="#81">81</a>  		<strong>switch</strong> (type) {
+<a name="82" href="#82">82</a>  		<strong>case</strong> StAX_POLICY_WRITER:
+<a name="83" href="#83">83</a>  			name = <span class="string">"org.apache.ws.policy.util.StAXPolicyWriter"</span>;
+<a name="84" href="#84">84</a>  			<strong>break</strong>;
+<a name="85" href="#85">85</a>  		<strong>default</strong>:
+<a name="86" href="#86">86</a>  			<strong>throw</strong> <strong>new</strong> IllegalArgumentException(<span class="string">"Unknown PolicyWriter type .."</span>);
+<a name="87" href="#87">87</a>  		}
+<a name="88" href="#88">88</a>  		<strong>try</strong> {
+<a name="89" href="#89">89</a>  			<strong>return</strong> (PolicyWriter) Loader.loadClass(name).newInstance();
+<a name="90" href="#90">90</a>  		} <strong>catch</strong> (InstantiationException e) {
+<a name="91" href="#91">91</a>  			<strong>throw</strong> <strong>new</strong> IllegalArgumentException(
+<a name="92" href="#92">92</a>  					<span class="string">"Cannot load PolicyWriter type .."</span>);
+<a name="93" href="#93">93</a>  		} <strong>catch</strong> (IllegalAccessException e) {
+<a name="94" href="#94">94</a>  			<strong>throw</strong> <strong>new</strong> IllegalArgumentException(
+<a name="95" href="#95">95</a>  					<span class="string">"Cannot load PolicyWriter type .."</span>);
+<a name="96" href="#96">96</a>  		} <strong>catch</strong> (ClassNotFoundException e) {
+<a name="97" href="#97">97</a>  			<strong>throw</strong> <strong>new</strong> IllegalArgumentException(
+<a name="98" href="#98">98</a>  					<span class="string">"Cannot load PolicyWriter type .."</span>);
+<a name="99" href="#99">99</a>  		}
+<a name="100" href="#100">100</a> 	}
+<a name="101" href="#101">101</a> 
+<a name="102" href="#102">102</a> }
+</pre>
+<hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body>
+</html>
+