You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ws.apache.org by co...@apache.org on 2011/12/06 11:24:32 UTC

svn commit: r1210847 [38/42] - in /webservices/wss4j/site: ./ apidocs/ apidocs/org/apache/ws/security/ apidocs/org/apache/ws/security/action/ apidocs/org/apache/ws/security/action/class-use/ apidocs/org/apache/ws/security/class-use/ apidocs/org/apache/...

Modified: webservices/wss4j/site/xref/org/apache/ws/security/saml/ext/AssertionWrapper.html
URL: http://svn.apache.org/viewvc/webservices/wss4j/site/xref/org/apache/ws/security/saml/ext/AssertionWrapper.html?rev=1210847&r1=1210846&r2=1210847&view=diff
==============================================================================
--- webservices/wss4j/site/xref/org/apache/ws/security/saml/ext/AssertionWrapper.html (original)
+++ webservices/wss4j/site/xref/org/apache/ws/security/saml/ext/AssertionWrapper.html Tue Dec  6 10:23:54 2011
@@ -159,630 +159,651 @@
 <a name="149" href="#149">149</a>     <strong class="jxr_keyword">public</strong> <a href="../../../../../../org/apache/ws/security/saml/ext/AssertionWrapper.html">AssertionWrapper</a>(Element element) <strong class="jxr_keyword">throws</strong> WSSecurityException {
 <a name="150" href="#150">150</a>         OpenSAMLUtil.initSamlEngine();
 <a name="151" href="#151">151</a>         
-<a name="152" href="#152">152</a>         <strong class="jxr_keyword">this</strong>.xmlObject = OpenSAMLUtil.fromDom(element);
-<a name="153" href="#153">153</a>         <strong class="jxr_keyword">if</strong> (xmlObject instanceof org.opensaml.saml1.core.Assertion) {
-<a name="154" href="#154">154</a>             <strong class="jxr_keyword">this</strong>.saml1 = (org.opensaml.saml1.core.Assertion) xmlObject;
-<a name="155" href="#155">155</a>             samlVersion = SAMLVersion.VERSION_11;
-<a name="156" href="#156">156</a>         } <strong class="jxr_keyword">else</strong> <strong class="jxr_keyword">if</strong> (xmlObject instanceof org.opensaml.saml2.core.Assertion) {
-<a name="157" href="#157">157</a>             <strong class="jxr_keyword">this</strong>.saml2 = (org.opensaml.saml2.core.Assertion) xmlObject;
-<a name="158" href="#158">158</a>             samlVersion = SAMLVersion.VERSION_20;
-<a name="159" href="#159">159</a>         } <strong class="jxr_keyword">else</strong> {
-<a name="160" href="#160">160</a>             log.error(
-<a name="161" href="#161">161</a>                 <span class="jxr_string">"AssertionWrapper: found unexpected type "</span> 
-<a name="162" href="#162">162</a>                 + (xmlObject != <strong class="jxr_keyword">null</strong> ? xmlObject.getClass().getName() : xmlObject)
-<a name="163" href="#163">163</a>             );
-<a name="164" href="#164">164</a>         }
-<a name="165" href="#165">165</a>         
-<a name="166" href="#166">166</a>         assertionElement = element;
-<a name="167" href="#167">167</a>     }
-<a name="168" href="#168">168</a> 
-<a name="169" href="#169">169</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="170" href="#170">170</a> <em class="jxr_javadoccomment">     * Constructor AssertionWrapper creates a new AssertionWrapper instance.</em>
-<a name="171" href="#171">171</a> <em class="jxr_javadoccomment">     *</em>
-<a name="172" href="#172">172</a> <em class="jxr_javadoccomment">     * @param saml2 of type Assertion</em>
-<a name="173" href="#173">173</a> <em class="jxr_javadoccomment">     */</em>
-<a name="174" href="#174">174</a>     <strong class="jxr_keyword">public</strong> <a href="../../../../../../org/apache/ws/security/saml/ext/AssertionWrapper.html">AssertionWrapper</a>(org.opensaml.saml2.core.Assertion saml2) {
-<a name="175" href="#175">175</a>         <strong class="jxr_keyword">this</strong>((XMLObject)saml2);
-<a name="176" href="#176">176</a>     }
-<a name="177" href="#177">177</a> 
-<a name="178" href="#178">178</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="179" href="#179">179</a> <em class="jxr_javadoccomment">     * Constructor AssertionWrapper creates a new AssertionWrapper instance.</em>
-<a name="180" href="#180">180</a> <em class="jxr_javadoccomment">     *</em>
-<a name="181" href="#181">181</a> <em class="jxr_javadoccomment">     * @param saml1 of type Assertion</em>
-<a name="182" href="#182">182</a> <em class="jxr_javadoccomment">     */</em>
-<a name="183" href="#183">183</a>     <strong class="jxr_keyword">public</strong> <a href="../../../../../../org/apache/ws/security/saml/ext/AssertionWrapper.html">AssertionWrapper</a>(org.opensaml.saml1.core.Assertion saml1) {
-<a name="184" href="#184">184</a>         <strong class="jxr_keyword">this</strong>((XMLObject)saml1);
-<a name="185" href="#185">185</a>     }
-<a name="186" href="#186">186</a> 
-<a name="187" href="#187">187</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="188" href="#188">188</a> <em class="jxr_javadoccomment">     * Constructor AssertionWrapper creates a new AssertionWrapper instance.</em>
-<a name="189" href="#189">189</a> <em class="jxr_javadoccomment">     * This is the primary constructor.  All other constructor calls should</em>
-<a name="190" href="#190">190</a> <em class="jxr_javadoccomment">     * be routed to this method to ensure that the wrapper is initialized</em>
-<a name="191" href="#191">191</a> <em class="jxr_javadoccomment">     * correctly.</em>
-<a name="192" href="#192">192</a> <em class="jxr_javadoccomment">     *</em>
-<a name="193" href="#193">193</a> <em class="jxr_javadoccomment">     * @param xmlObject of type XMLObject</em>
-<a name="194" href="#194">194</a> <em class="jxr_javadoccomment">     */</em>
-<a name="195" href="#195">195</a>     <strong class="jxr_keyword">public</strong> <a href="../../../../../../org/apache/ws/security/saml/ext/AssertionWrapper.html">AssertionWrapper</a>(XMLObject xmlObject) {
-<a name="196" href="#196">196</a>         OpenSAMLUtil.initSamlEngine();
-<a name="197" href="#197">197</a>         
-<a name="198" href="#198">198</a>         <strong class="jxr_keyword">this</strong>.xmlObject = xmlObject;
-<a name="199" href="#199">199</a>         <strong class="jxr_keyword">if</strong> (xmlObject instanceof org.opensaml.saml1.core.Assertion) {
-<a name="200" href="#200">200</a>             <strong class="jxr_keyword">this</strong>.saml1 = (org.opensaml.saml1.core.Assertion) xmlObject;
-<a name="201" href="#201">201</a>             samlVersion = SAMLVersion.VERSION_11;
-<a name="202" href="#202">202</a>         } <strong class="jxr_keyword">else</strong> <strong class="jxr_keyword">if</strong> (xmlObject instanceof org.opensaml.saml2.core.Assertion) {
-<a name="203" href="#203">203</a>             <strong class="jxr_keyword">this</strong>.saml2 = (org.opensaml.saml2.core.Assertion) xmlObject;
-<a name="204" href="#204">204</a>             samlVersion = SAMLVersion.VERSION_20;
-<a name="205" href="#205">205</a>         } <strong class="jxr_keyword">else</strong> {
-<a name="206" href="#206">206</a>             log.error(
-<a name="207" href="#207">207</a>                 <span class="jxr_string">"AssertionWrapper: found unexpected type "</span> 
-<a name="208" href="#208">208</a>                 + (xmlObject != <strong class="jxr_keyword">null</strong> ? xmlObject.getClass().getName() : xmlObject)
-<a name="209" href="#209">209</a>             );
-<a name="210" href="#210">210</a>         }
-<a name="211" href="#211">211</a>     }
-<a name="212" href="#212">212</a> 
-<a name="213" href="#213">213</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="214" href="#214">214</a> <em class="jxr_javadoccomment">     * Constructor AssertionWrapper creates a new AssertionWrapper instance.</em>
-<a name="215" href="#215">215</a> <em class="jxr_javadoccomment">     * This constructor is primarily called on the client side to initialize</em>
-<a name="216" href="#216">216</a> <em class="jxr_javadoccomment">     * the wrapper from a configuration file. &lt;br&gt;</em>
-<a name="217" href="#217">217</a> <em class="jxr_javadoccomment">     * NOTE: The OpenSaml library MUST be initialized prior to constructing an AssertionWrapper</em>
-<a name="218" href="#218">218</a> <em class="jxr_javadoccomment">     *</em>
-<a name="219" href="#219">219</a> <em class="jxr_javadoccomment">     * @param parms of type SAMLParms</em>
-<a name="220" href="#220">220</a> <em class="jxr_javadoccomment">     */</em>
-<a name="221" href="#221">221</a>     <strong class="jxr_keyword">public</strong> <a href="../../../../../../org/apache/ws/security/saml/ext/AssertionWrapper.html">AssertionWrapper</a>(<a href="../../../../../../org/apache/ws/security/saml/ext/SAMLParms.html">SAMLParms</a> parms) <strong class="jxr_keyword">throws</strong> WSSecurityException {
-<a name="222" href="#222">222</a>         OpenSAMLUtil.initSamlEngine();
-<a name="223" href="#223">223</a>         
-<a name="224" href="#224">224</a>         <em class="jxr_comment">//</em>
-<a name="225" href="#225">225</a>         <em class="jxr_comment">// Create the SAML callback that the handler will use to get the required data from the </em>
-<a name="226" href="#226">226</a>         <em class="jxr_comment">// client application.</em>
-<a name="227" href="#227">227</a>         <em class="jxr_comment">//</em>
-<a name="228" href="#228">228</a>         <a href="../../../../../../org/apache/ws/security/saml/ext/SAMLCallback.html">SAMLCallback</a>[] samlCallbacks = <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/ws/security/saml/ext/SAMLCallback.html">SAMLCallback</a>[] { <strong class="jxr_keyword">new</strong> SAMLCallback() };
-<a name="229" href="#229">229</a> 
-<a name="230" href="#230">230</a>         <strong class="jxr_keyword">try</strong> {
-<a name="231" href="#231">231</a>             <em class="jxr_comment">// Get the SAML source data using the currently configured callback implementation.</em>
-<a name="232" href="#232">232</a>             <strong class="jxr_keyword">if</strong> (samlCallbackHandler == <strong class="jxr_keyword">null</strong>) {
-<a name="233" href="#233">233</a>                 samlCallbackHandler = parms.getCallbackHandler();
-<a name="234" href="#234">234</a>             }
-<a name="235" href="#235">235</a> 
-<a name="236" href="#236">236</a>             samlCallbackHandler.handle(samlCallbacks);
-<a name="237" href="#237">237</a> 
-<a name="238" href="#238">238</a>         } <strong class="jxr_keyword">catch</strong> (IOException e) {
-<a name="239" href="#239">239</a>             <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> IllegalStateException(
-<a name="240" href="#240">240</a>                 <span class="jxr_string">"IOException while creating SAML assertion wrapper"</span>, e
-<a name="241" href="#241">241</a>             );
-<a name="242" href="#242">242</a>         } <strong class="jxr_keyword">catch</strong> (UnsupportedCallbackException e) {
-<a name="243" href="#243">243</a>             <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> IllegalStateException(
-<a name="244" href="#244">244</a>                 <span class="jxr_string">"UnsupportedCallbackException while creating SAML assertion wrapper"</span>, e
-<a name="245" href="#245">245</a>             );
-<a name="246" href="#246">246</a>         }
-<a name="247" href="#247">247</a> 
-<a name="248" href="#248">248</a>         samlVersion = samlCallbacks[0].getSamlVersion();
-<a name="249" href="#249">249</a>         <strong class="jxr_keyword">if</strong> (samlVersion == <strong class="jxr_keyword">null</strong>) {
-<a name="250" href="#250">250</a>             samlVersion = parms.getSAMLVersion();
-<a name="251" href="#251">251</a>         }
-<a name="252" href="#252">252</a>         String issuer = samlCallbacks[0].getIssuer();
-<a name="253" href="#253">253</a>         <strong class="jxr_keyword">if</strong> (issuer == <strong class="jxr_keyword">null</strong> &amp;&amp; parms.getIssuer() != <strong class="jxr_keyword">null</strong>) {
-<a name="254" href="#254">254</a>             issuer = parms.getIssuer();
-<a name="255" href="#255">255</a>         }
-<a name="256" href="#256">256</a>         <strong class="jxr_keyword">if</strong> (samlVersion.equals(SAMLVersion.VERSION_11)) {
-<a name="257" href="#257">257</a>             <em class="jxr_comment">// Build a SAML v1.1 assertion</em>
-<a name="258" href="#258">258</a>             saml1 = SAML1ComponentBuilder.createSamlv1Assertion(issuer);
+<a name="152" href="#152">152</a>         parseElement(element);
+<a name="153" href="#153">153</a>     }
+<a name="154" href="#154">154</a> 
+<a name="155" href="#155">155</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="156" href="#156">156</a> <em class="jxr_javadoccomment">     * Constructor AssertionWrapper creates a new AssertionWrapper instance.</em>
+<a name="157" href="#157">157</a> <em class="jxr_javadoccomment">     *</em>
+<a name="158" href="#158">158</a> <em class="jxr_javadoccomment">     * @param saml2 of type Assertion</em>
+<a name="159" href="#159">159</a> <em class="jxr_javadoccomment">     */</em>
+<a name="160" href="#160">160</a>     <strong class="jxr_keyword">public</strong> <a href="../../../../../../org/apache/ws/security/saml/ext/AssertionWrapper.html">AssertionWrapper</a>(org.opensaml.saml2.core.Assertion saml2) {
+<a name="161" href="#161">161</a>         <strong class="jxr_keyword">this</strong>((XMLObject)saml2);
+<a name="162" href="#162">162</a>     }
+<a name="163" href="#163">163</a> 
+<a name="164" href="#164">164</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="165" href="#165">165</a> <em class="jxr_javadoccomment">     * Constructor AssertionWrapper creates a new AssertionWrapper instance.</em>
+<a name="166" href="#166">166</a> <em class="jxr_javadoccomment">     *</em>
+<a name="167" href="#167">167</a> <em class="jxr_javadoccomment">     * @param saml1 of type Assertion</em>
+<a name="168" href="#168">168</a> <em class="jxr_javadoccomment">     */</em>
+<a name="169" href="#169">169</a>     <strong class="jxr_keyword">public</strong> <a href="../../../../../../org/apache/ws/security/saml/ext/AssertionWrapper.html">AssertionWrapper</a>(org.opensaml.saml1.core.Assertion saml1) {
+<a name="170" href="#170">170</a>         <strong class="jxr_keyword">this</strong>((XMLObject)saml1);
+<a name="171" href="#171">171</a>     }
+<a name="172" href="#172">172</a> 
+<a name="173" href="#173">173</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="174" href="#174">174</a> <em class="jxr_javadoccomment">     * Constructor AssertionWrapper creates a new AssertionWrapper instance.</em>
+<a name="175" href="#175">175</a> <em class="jxr_javadoccomment">     * This is the primary constructor.  All other constructor calls should</em>
+<a name="176" href="#176">176</a> <em class="jxr_javadoccomment">     * be routed to this method to ensure that the wrapper is initialized</em>
+<a name="177" href="#177">177</a> <em class="jxr_javadoccomment">     * correctly.</em>
+<a name="178" href="#178">178</a> <em class="jxr_javadoccomment">     *</em>
+<a name="179" href="#179">179</a> <em class="jxr_javadoccomment">     * @param xmlObject of type XMLObject</em>
+<a name="180" href="#180">180</a> <em class="jxr_javadoccomment">     */</em>
+<a name="181" href="#181">181</a>     <strong class="jxr_keyword">public</strong> <a href="../../../../../../org/apache/ws/security/saml/ext/AssertionWrapper.html">AssertionWrapper</a>(XMLObject xmlObject) {
+<a name="182" href="#182">182</a>         OpenSAMLUtil.initSamlEngine();
+<a name="183" href="#183">183</a>         
+<a name="184" href="#184">184</a>         <strong class="jxr_keyword">this</strong>.xmlObject = xmlObject;
+<a name="185" href="#185">185</a>         <strong class="jxr_keyword">if</strong> (xmlObject instanceof org.opensaml.saml1.core.Assertion) {
+<a name="186" href="#186">186</a>             <strong class="jxr_keyword">this</strong>.saml1 = (org.opensaml.saml1.core.Assertion) xmlObject;
+<a name="187" href="#187">187</a>             samlVersion = SAMLVersion.VERSION_11;
+<a name="188" href="#188">188</a>         } <strong class="jxr_keyword">else</strong> <strong class="jxr_keyword">if</strong> (xmlObject instanceof org.opensaml.saml2.core.Assertion) {
+<a name="189" href="#189">189</a>             <strong class="jxr_keyword">this</strong>.saml2 = (org.opensaml.saml2.core.Assertion) xmlObject;
+<a name="190" href="#190">190</a>             samlVersion = SAMLVersion.VERSION_20;
+<a name="191" href="#191">191</a>         } <strong class="jxr_keyword">else</strong> {
+<a name="192" href="#192">192</a>             log.error(
+<a name="193" href="#193">193</a>                 <span class="jxr_string">"AssertionWrapper: found unexpected type "</span> 
+<a name="194" href="#194">194</a>                 + (xmlObject != <strong class="jxr_keyword">null</strong> ? xmlObject.getClass().getName() : xmlObject)
+<a name="195" href="#195">195</a>             );
+<a name="196" href="#196">196</a>         }
+<a name="197" href="#197">197</a>     }
+<a name="198" href="#198">198</a> 
+<a name="199" href="#199">199</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="200" href="#200">200</a> <em class="jxr_javadoccomment">     * Constructor AssertionWrapper creates a new AssertionWrapper instance.</em>
+<a name="201" href="#201">201</a> <em class="jxr_javadoccomment">     * This constructor is primarily called on the client side to initialize</em>
+<a name="202" href="#202">202</a> <em class="jxr_javadoccomment">     * the wrapper from a configuration file. &lt;br&gt;</em>
+<a name="203" href="#203">203</a> <em class="jxr_javadoccomment">     *</em>
+<a name="204" href="#204">204</a> <em class="jxr_javadoccomment">     * @param parms of type SAMLParms</em>
+<a name="205" href="#205">205</a> <em class="jxr_javadoccomment">     */</em>
+<a name="206" href="#206">206</a>     <strong class="jxr_keyword">public</strong> <a href="../../../../../../org/apache/ws/security/saml/ext/AssertionWrapper.html">AssertionWrapper</a>(<a href="../../../../../../org/apache/ws/security/saml/ext/SAMLParms.html">SAMLParms</a> parms) <strong class="jxr_keyword">throws</strong> WSSecurityException {
+<a name="207" href="#207">207</a>         OpenSAMLUtil.initSamlEngine();
+<a name="208" href="#208">208</a>         
+<a name="209" href="#209">209</a>         <em class="jxr_comment">//</em>
+<a name="210" href="#210">210</a>         <em class="jxr_comment">// Create the SAML callback that the handler will use to get the required data from the </em>
+<a name="211" href="#211">211</a>         <em class="jxr_comment">// client application.</em>
+<a name="212" href="#212">212</a>         <em class="jxr_comment">//</em>
+<a name="213" href="#213">213</a>         <a href="../../../../../../org/apache/ws/security/saml/ext/SAMLCallback.html">SAMLCallback</a>[] samlCallbacks = <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/ws/security/saml/ext/SAMLCallback.html">SAMLCallback</a>[] { <strong class="jxr_keyword">new</strong> SAMLCallback() };
+<a name="214" href="#214">214</a> 
+<a name="215" href="#215">215</a>         <strong class="jxr_keyword">try</strong> {
+<a name="216" href="#216">216</a>             <em class="jxr_comment">// Get the SAML source data using the currently configured callback implementation.</em>
+<a name="217" href="#217">217</a>             <strong class="jxr_keyword">if</strong> (samlCallbackHandler == <strong class="jxr_keyword">null</strong>) {
+<a name="218" href="#218">218</a>                 samlCallbackHandler = parms.getCallbackHandler();
+<a name="219" href="#219">219</a>             }
+<a name="220" href="#220">220</a> 
+<a name="221" href="#221">221</a>             samlCallbackHandler.handle(samlCallbacks);
+<a name="222" href="#222">222</a> 
+<a name="223" href="#223">223</a>         } <strong class="jxr_keyword">catch</strong> (IOException e) {
+<a name="224" href="#224">224</a>             <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> IllegalStateException(
+<a name="225" href="#225">225</a>                 <span class="jxr_string">"IOException while creating SAML assertion wrapper"</span>, e
+<a name="226" href="#226">226</a>             );
+<a name="227" href="#227">227</a>         } <strong class="jxr_keyword">catch</strong> (UnsupportedCallbackException e) {
+<a name="228" href="#228">228</a>             <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> IllegalStateException(
+<a name="229" href="#229">229</a>                 <span class="jxr_string">"UnsupportedCallbackException while creating SAML assertion wrapper"</span>, e
+<a name="230" href="#230">230</a>             );
+<a name="231" href="#231">231</a>         }
+<a name="232" href="#232">232</a>         
+<a name="233" href="#233">233</a>         <em class="jxr_comment">// See if we already have a DOM element in SAMLCallback</em>
+<a name="234" href="#234">234</a>         <strong class="jxr_keyword">if</strong> (samlCallbacks[0].getAssertionElement() != <strong class="jxr_keyword">null</strong>) {
+<a name="235" href="#235">235</a>             parseElement(samlCallbacks[0].getAssertionElement());
+<a name="236" href="#236">236</a>         } <strong class="jxr_keyword">else</strong> {
+<a name="237" href="#237">237</a>             <em class="jxr_comment">// If not then parse the SAMLCallback object</em>
+<a name="238" href="#238">238</a>             parseCallback(samlCallbacks[0], parms);
+<a name="239" href="#239">239</a>         }
+<a name="240" href="#240">240</a>     }
+<a name="241" href="#241">241</a> 
+<a name="242" href="#242">242</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="243" href="#243">243</a> <em class="jxr_javadoccomment">     * Method getSaml1 returns the saml1 of this AssertionWrapper object.</em>
+<a name="244" href="#244">244</a> <em class="jxr_javadoccomment">     *</em>
+<a name="245" href="#245">245</a> <em class="jxr_javadoccomment">     * @return the saml1 (type Assertion) of this AssertionWrapper object.</em>
+<a name="246" href="#246">246</a> <em class="jxr_javadoccomment">     */</em>
+<a name="247" href="#247">247</a>     <strong class="jxr_keyword">public</strong> org.opensaml.saml1.core.Assertion getSaml1() {
+<a name="248" href="#248">248</a>         <strong class="jxr_keyword">return</strong> saml1;
+<a name="249" href="#249">249</a>     }
+<a name="250" href="#250">250</a> 
+<a name="251" href="#251">251</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="252" href="#252">252</a> <em class="jxr_javadoccomment">     * Method getSaml2 returns the saml2 of this AssertionWrapper object.</em>
+<a name="253" href="#253">253</a> <em class="jxr_javadoccomment">     *</em>
+<a name="254" href="#254">254</a> <em class="jxr_javadoccomment">     * @return the saml2 (type Assertion) of this AssertionWrapper object.</em>
+<a name="255" href="#255">255</a> <em class="jxr_javadoccomment">     */</em>
+<a name="256" href="#256">256</a>     <strong class="jxr_keyword">public</strong> org.opensaml.saml2.core.Assertion getSaml2() {
+<a name="257" href="#257">257</a>         <strong class="jxr_keyword">return</strong> saml2;
+<a name="258" href="#258">258</a>     }
 <a name="259" href="#259">259</a> 
-<a name="260" href="#260">260</a>             <strong class="jxr_keyword">try</strong> {
-<a name="261" href="#261">261</a>                 <em class="jxr_comment">// Process the SAML authentication statement(s)</em>
-<a name="262" href="#262">262</a>                 List&lt;AuthenticationStatement&gt; authenticationStatements = 
-<a name="263" href="#263">263</a>                     SAML1ComponentBuilder.createSamlv1AuthenticationStatement(
-<a name="264" href="#264">264</a>                         samlCallbacks[0].getAuthenticationStatementData()
-<a name="265" href="#265">265</a>                     );
-<a name="266" href="#266">266</a>                 saml1.getAuthenticationStatements().addAll(authenticationStatements);
-<a name="267" href="#267">267</a>     
-<a name="268" href="#268">268</a>                 <em class="jxr_comment">// Process the SAML attribute statement(s)            </em>
-<a name="269" href="#269">269</a>                 List&lt;AttributeStatement&gt; attributeStatements =
-<a name="270" href="#270">270</a>                         SAML1ComponentBuilder.createSamlv1AttributeStatement(
-<a name="271" href="#271">271</a>                             samlCallbacks[0].getAttributeStatementData()
-<a name="272" href="#272">272</a>                         );
-<a name="273" href="#273">273</a>                 saml1.getAttributeStatements().addAll(attributeStatements);
-<a name="274" href="#274">274</a>     
-<a name="275" href="#275">275</a>                 <em class="jxr_comment">// Process the SAML authorization decision statement(s)</em>
-<a name="276" href="#276">276</a>                 List&lt;AuthorizationDecisionStatement&gt; authDecisionStatements =
-<a name="277" href="#277">277</a>                         SAML1ComponentBuilder.createSamlv1AuthorizationDecisionStatement(
-<a name="278" href="#278">278</a>                             samlCallbacks[0].getAuthDecisionStatementData()
-<a name="279" href="#279">279</a>                         );
-<a name="280" href="#280">280</a>                 saml1.getAuthorizationDecisionStatements().addAll(authDecisionStatements);
-<a name="281" href="#281">281</a>     
-<a name="282" href="#282">282</a>                 <em class="jxr_comment">// Build the complete assertion</em>
-<a name="283" href="#283">283</a>                 org.opensaml.saml1.core.Conditions conditions = 
-<a name="284" href="#284">284</a>                     SAML1ComponentBuilder.createSamlv1Conditions(samlCallbacks[0].getConditions());
-<a name="285" href="#285">285</a>                 saml1.setConditions(conditions);
-<a name="286" href="#286">286</a>             } <strong class="jxr_keyword">catch</strong> (org.opensaml.xml.security.SecurityException ex) {
-<a name="287" href="#287">287</a>                 <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/ws/security/WSSecurityException.html">WSSecurityException</a>(
-<a name="288" href="#288">288</a>                     <span class="jxr_string">"Error generating KeyInfo from signing credential"</span>, ex
-<a name="289" href="#289">289</a>                 );
-<a name="290" href="#290">290</a>             }
-<a name="291" href="#291">291</a> 
-<a name="292" href="#292">292</a>             <em class="jxr_comment">// Set the OpenSaml2 XMLObject instance</em>
-<a name="293" href="#293">293</a>             xmlObject = saml1;
-<a name="294" href="#294">294</a> 
-<a name="295" href="#295">295</a>         } <strong class="jxr_keyword">else</strong> <strong class="jxr_keyword">if</strong> (samlVersion.equals(SAMLVersion.VERSION_20)) {
-<a name="296" href="#296">296</a>             <em class="jxr_comment">// Build a SAML v2.0 assertion</em>
-<a name="297" href="#297">297</a>             saml2 = SAML2ComponentBuilder.createAssertion();
-<a name="298" href="#298">298</a>             Issuer samlIssuer = SAML2ComponentBuilder.createIssuer(issuer);
-<a name="299" href="#299">299</a> 
-<a name="300" href="#300">300</a>             <em class="jxr_comment">// Authn Statement(s)</em>
-<a name="301" href="#301">301</a>             List&lt;AuthnStatement&gt; authnStatements = 
-<a name="302" href="#302">302</a>                 SAML2ComponentBuilder.createAuthnStatement(
-<a name="303" href="#303">303</a>                     samlCallbacks[0].getAuthenticationStatementData()
-<a name="304" href="#304">304</a>                 );
-<a name="305" href="#305">305</a>             saml2.getAuthnStatements().addAll(authnStatements);
-<a name="306" href="#306">306</a> 
-<a name="307" href="#307">307</a>             <em class="jxr_comment">// Attribute statement(s)</em>
-<a name="308" href="#308">308</a>             List&lt;org.opensaml.saml2.core.AttributeStatement&gt; attributeStatements = 
-<a name="309" href="#309">309</a>                 SAML2ComponentBuilder.createAttributeStatement(
-<a name="310" href="#310">310</a>                     samlCallbacks[0].getAttributeStatementData()
-<a name="311" href="#311">311</a>                 );
-<a name="312" href="#312">312</a>             saml2.getAttributeStatements().addAll(attributeStatements);
-<a name="313" href="#313">313</a> 
-<a name="314" href="#314">314</a>             <em class="jxr_comment">// AuthzDecisionStatement(s)</em>
-<a name="315" href="#315">315</a>             List&lt;AuthzDecisionStatement&gt; authDecisionStatements =
-<a name="316" href="#316">316</a>                     SAML2ComponentBuilder.createAuthorizationDecisionStatement(
-<a name="317" href="#317">317</a>                         samlCallbacks[0].getAuthDecisionStatementData()
-<a name="318" href="#318">318</a>                     );
-<a name="319" href="#319">319</a>             saml2.getAuthzDecisionStatements().addAll(authDecisionStatements);
-<a name="320" href="#320">320</a> 
-<a name="321" href="#321">321</a>             <em class="jxr_comment">// Build the SAML v2.0 assertion</em>
-<a name="322" href="#322">322</a>             saml2.setIssuer(samlIssuer);
-<a name="323" href="#323">323</a>             
-<a name="324" href="#324">324</a>             <strong class="jxr_keyword">try</strong> {
-<a name="325" href="#325">325</a>                 org.opensaml.saml2.core.Subject subject = 
-<a name="326" href="#326">326</a>                     SAML2ComponentBuilder.createSaml2Subject(samlCallbacks[0].getSubject());
-<a name="327" href="#327">327</a>                 saml2.setSubject(subject);
-<a name="328" href="#328">328</a>             } <strong class="jxr_keyword">catch</strong> (org.opensaml.xml.security.SecurityException ex) {
-<a name="329" href="#329">329</a>                 <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/ws/security/WSSecurityException.html">WSSecurityException</a>(
-<a name="330" href="#330">330</a>                     <span class="jxr_string">"Error generating KeyInfo from signing credential"</span>, ex
-<a name="331" href="#331">331</a>                 );
-<a name="332" href="#332">332</a>             }
-<a name="333" href="#333">333</a>             
-<a name="334" href="#334">334</a>             org.opensaml.saml2.core.Conditions conditions = 
-<a name="335" href="#335">335</a>                 SAML2ComponentBuilder.createConditions(samlCallbacks[0].getConditions());
-<a name="336" href="#336">336</a>             saml2.setConditions(conditions);
-<a name="337" href="#337">337</a> 
-<a name="338" href="#338">338</a>             <em class="jxr_comment">// Set the OpenSaml2 XMLObject instance</em>
-<a name="339" href="#339">339</a>             xmlObject = saml2;
-<a name="340" href="#340">340</a>         }
-<a name="341" href="#341">341</a>     }
-<a name="342" href="#342">342</a> 
-<a name="343" href="#343">343</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="344" href="#344">344</a> <em class="jxr_javadoccomment">     * Method getSaml1 returns the saml1 of this AssertionWrapper object.</em>
-<a name="345" href="#345">345</a> <em class="jxr_javadoccomment">     *</em>
-<a name="346" href="#346">346</a> <em class="jxr_javadoccomment">     * @return the saml1 (type Assertion) of this AssertionWrapper object.</em>
-<a name="347" href="#347">347</a> <em class="jxr_javadoccomment">     */</em>
-<a name="348" href="#348">348</a>     <strong class="jxr_keyword">public</strong> org.opensaml.saml1.core.Assertion getSaml1() {
-<a name="349" href="#349">349</a>         <strong class="jxr_keyword">return</strong> saml1;
-<a name="350" href="#350">350</a>     }
-<a name="351" href="#351">351</a> 
-<a name="352" href="#352">352</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="353" href="#353">353</a> <em class="jxr_javadoccomment">     * Method getSaml2 returns the saml2 of this AssertionWrapper object.</em>
-<a name="354" href="#354">354</a> <em class="jxr_javadoccomment">     *</em>
-<a name="355" href="#355">355</a> <em class="jxr_javadoccomment">     * @return the saml2 (type Assertion) of this AssertionWrapper object.</em>
-<a name="356" href="#356">356</a> <em class="jxr_javadoccomment">     */</em>
-<a name="357" href="#357">357</a>     <strong class="jxr_keyword">public</strong> org.opensaml.saml2.core.Assertion getSaml2() {
-<a name="358" href="#358">358</a>         <strong class="jxr_keyword">return</strong> saml2;
-<a name="359" href="#359">359</a>     }
-<a name="360" href="#360">360</a> 
-<a name="361" href="#361">361</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="362" href="#362">362</a> <em class="jxr_javadoccomment">     * Method getXmlObject returns the xmlObject of this AssertionWrapper object.</em>
-<a name="363" href="#363">363</a> <em class="jxr_javadoccomment">     *</em>
-<a name="364" href="#364">364</a> <em class="jxr_javadoccomment">     * @return the xmlObject (type XMLObject) of this AssertionWrapper object.</em>
-<a name="365" href="#365">365</a> <em class="jxr_javadoccomment">     */</em>
-<a name="366" href="#366">366</a>     <strong class="jxr_keyword">public</strong> XMLObject getXmlObject() {
-<a name="367" href="#367">367</a>         <strong class="jxr_keyword">return</strong> xmlObject;
-<a name="368" href="#368">368</a>     }
-<a name="369" href="#369">369</a> 
-<a name="370" href="#370">370</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="371" href="#371">371</a> <em class="jxr_javadoccomment">     * Method isCreated returns the created of this AssertionWrapper object.</em>
-<a name="372" href="#372">372</a> <em class="jxr_javadoccomment">     *</em>
-<a name="373" href="#373">373</a> <em class="jxr_javadoccomment">     * @return the created (type boolean) of this AssertionWrapper object.</em>
-<a name="374" href="#374">374</a> <em class="jxr_javadoccomment">     */</em>
-<a name="375" href="#375">375</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> isCreated() {
-<a name="376" href="#376">376</a>         <strong class="jxr_keyword">return</strong> saml1 != <strong class="jxr_keyword">null</strong> || saml2 != <strong class="jxr_keyword">null</strong>;
-<a name="377" href="#377">377</a>     }
-<a name="378" href="#378">378</a> 
-<a name="379" href="#379">379</a> 
-<a name="380" href="#380">380</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="381" href="#381">381</a> <em class="jxr_javadoccomment">     * Create a DOM from the current XMLObject content. If the user-supplied doc is not null,</em>
-<a name="382" href="#382">382</a> <em class="jxr_javadoccomment">     * reparent the returned Element so that it is compatible with the user-supplied document.</em>
-<a name="383" href="#383">383</a> <em class="jxr_javadoccomment">     *</em>
-<a name="384" href="#384">384</a> <em class="jxr_javadoccomment">     * @param doc of type Document</em>
-<a name="385" href="#385">385</a> <em class="jxr_javadoccomment">     * @return Element</em>
-<a name="386" href="#386">386</a> <em class="jxr_javadoccomment">     */</em>
-<a name="387" href="#387">387</a>     <strong class="jxr_keyword">public</strong> Element toDOM(Document doc) <strong class="jxr_keyword">throws</strong> WSSecurityException {
-<a name="388" href="#388">388</a>         assertionElement = OpenSAMLUtil.toDom(xmlObject, doc);
-<a name="389" href="#389">389</a>         <strong class="jxr_keyword">return</strong> assertionElement;
-<a name="390" href="#390">390</a>     }
-<a name="391" href="#391">391</a> 
-<a name="392" href="#392">392</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="393" href="#393">393</a> <em class="jxr_javadoccomment">     * Method assertionToString ...</em>
-<a name="394" href="#394">394</a> <em class="jxr_javadoccomment">     *</em>
-<a name="395" href="#395">395</a> <em class="jxr_javadoccomment">     * @return String</em>
-<a name="396" href="#396">396</a> <em class="jxr_javadoccomment">     */</em>
-<a name="397" href="#397">397</a>     <strong class="jxr_keyword">public</strong> String assertionToString() <strong class="jxr_keyword">throws</strong> WSSecurityException {
-<a name="398" href="#398">398</a>         Element element = toDOM(<strong class="jxr_keyword">null</strong>);
-<a name="399" href="#399">399</a>         <strong class="jxr_keyword">return</strong> DOM2Writer.nodeToString(element);
+<a name="260" href="#260">260</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="261" href="#261">261</a> <em class="jxr_javadoccomment">     * Method getXmlObject returns the xmlObject of this AssertionWrapper object.</em>
+<a name="262" href="#262">262</a> <em class="jxr_javadoccomment">     *</em>
+<a name="263" href="#263">263</a> <em class="jxr_javadoccomment">     * @return the xmlObject (type XMLObject) of this AssertionWrapper object.</em>
+<a name="264" href="#264">264</a> <em class="jxr_javadoccomment">     */</em>
+<a name="265" href="#265">265</a>     <strong class="jxr_keyword">public</strong> XMLObject getXmlObject() {
+<a name="266" href="#266">266</a>         <strong class="jxr_keyword">return</strong> xmlObject;
+<a name="267" href="#267">267</a>     }
+<a name="268" href="#268">268</a> 
+<a name="269" href="#269">269</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="270" href="#270">270</a> <em class="jxr_javadoccomment">     * Method isCreated returns the created of this AssertionWrapper object.</em>
+<a name="271" href="#271">271</a> <em class="jxr_javadoccomment">     *</em>
+<a name="272" href="#272">272</a> <em class="jxr_javadoccomment">     * @return the created (type boolean) of this AssertionWrapper object.</em>
+<a name="273" href="#273">273</a> <em class="jxr_javadoccomment">     */</em>
+<a name="274" href="#274">274</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> isCreated() {
+<a name="275" href="#275">275</a>         <strong class="jxr_keyword">return</strong> saml1 != <strong class="jxr_keyword">null</strong> || saml2 != <strong class="jxr_keyword">null</strong>;
+<a name="276" href="#276">276</a>     }
+<a name="277" href="#277">277</a> 
+<a name="278" href="#278">278</a> 
+<a name="279" href="#279">279</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="280" href="#280">280</a> <em class="jxr_javadoccomment">     * Create a DOM from the current XMLObject content. If the user-supplied doc is not null,</em>
+<a name="281" href="#281">281</a> <em class="jxr_javadoccomment">     * reparent the returned Element so that it is compatible with the user-supplied document.</em>
+<a name="282" href="#282">282</a> <em class="jxr_javadoccomment">     *</em>
+<a name="283" href="#283">283</a> <em class="jxr_javadoccomment">     * @param doc of type Document</em>
+<a name="284" href="#284">284</a> <em class="jxr_javadoccomment">     * @return Element</em>
+<a name="285" href="#285">285</a> <em class="jxr_javadoccomment">     */</em>
+<a name="286" href="#286">286</a>     <strong class="jxr_keyword">public</strong> Element toDOM(Document doc) <strong class="jxr_keyword">throws</strong> WSSecurityException {
+<a name="287" href="#287">287</a>         assertionElement = OpenSAMLUtil.toDom(xmlObject, doc);
+<a name="288" href="#288">288</a>         <strong class="jxr_keyword">return</strong> assertionElement;
+<a name="289" href="#289">289</a>     }
+<a name="290" href="#290">290</a> 
+<a name="291" href="#291">291</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="292" href="#292">292</a> <em class="jxr_javadoccomment">     * Method assertionToString ...</em>
+<a name="293" href="#293">293</a> <em class="jxr_javadoccomment">     *</em>
+<a name="294" href="#294">294</a> <em class="jxr_javadoccomment">     * @return String</em>
+<a name="295" href="#295">295</a> <em class="jxr_javadoccomment">     */</em>
+<a name="296" href="#296">296</a>     <strong class="jxr_keyword">public</strong> String assertionToString() <strong class="jxr_keyword">throws</strong> WSSecurityException {
+<a name="297" href="#297">297</a>         Element element = toDOM(<strong class="jxr_keyword">null</strong>);
+<a name="298" href="#298">298</a>         <strong class="jxr_keyword">return</strong> DOM2Writer.nodeToString(element);
+<a name="299" href="#299">299</a>     }
+<a name="300" href="#300">300</a> 
+<a name="301" href="#301">301</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="302" href="#302">302</a> <em class="jxr_javadoccomment">     * Method getId returns the id of this AssertionWrapper object.</em>
+<a name="303" href="#303">303</a> <em class="jxr_javadoccomment">     *</em>
+<a name="304" href="#304">304</a> <em class="jxr_javadoccomment">     * @return the id (type String) of this AssertionWrapper object.</em>
+<a name="305" href="#305">305</a> <em class="jxr_javadoccomment">     */</em>
+<a name="306" href="#306">306</a>     <strong class="jxr_keyword">public</strong> String getId() {
+<a name="307" href="#307">307</a>         String id = <strong class="jxr_keyword">null</strong>;
+<a name="308" href="#308">308</a>         <strong class="jxr_keyword">if</strong> (saml2 != <strong class="jxr_keyword">null</strong>) {
+<a name="309" href="#309">309</a>             id = saml2.getID();
+<a name="310" href="#310">310</a>         } <strong class="jxr_keyword">else</strong> <strong class="jxr_keyword">if</strong> (saml1 != <strong class="jxr_keyword">null</strong>) {
+<a name="311" href="#311">311</a>             id = saml1.getID();
+<a name="312" href="#312">312</a>         } <strong class="jxr_keyword">else</strong> {
+<a name="313" href="#313">313</a>             log.error(<span class="jxr_string">"AssertionWrapper: unable to return ID - no saml assertion object"</span>);
+<a name="314" href="#314">314</a>         }
+<a name="315" href="#315">315</a>         <strong class="jxr_keyword">if</strong> (id == <strong class="jxr_keyword">null</strong> || id.length() == 0) {
+<a name="316" href="#316">316</a>             log.error(<span class="jxr_string">"AssertionWrapper: ID was null, seeting a new ID value"</span>);
+<a name="317" href="#317">317</a>             id = <span class="jxr_string">"_"</span> + UUIDGenerator.getUUID();
+<a name="318" href="#318">318</a>             <strong class="jxr_keyword">if</strong> (saml2 != <strong class="jxr_keyword">null</strong>) {
+<a name="319" href="#319">319</a>                 saml2.setID(id);
+<a name="320" href="#320">320</a>             } <strong class="jxr_keyword">else</strong> <strong class="jxr_keyword">if</strong> (saml1 != <strong class="jxr_keyword">null</strong>) {
+<a name="321" href="#321">321</a>                 saml1.setID(id);
+<a name="322" href="#322">322</a>             }
+<a name="323" href="#323">323</a>         }
+<a name="324" href="#324">324</a>         <strong class="jxr_keyword">return</strong> id;
+<a name="325" href="#325">325</a>     }
+<a name="326" href="#326">326</a> 
+<a name="327" href="#327">327</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="328" href="#328">328</a> <em class="jxr_javadoccomment">     * Method getIssuerString returns the issuerString of this AssertionWrapper object.</em>
+<a name="329" href="#329">329</a> <em class="jxr_javadoccomment">     *</em>
+<a name="330" href="#330">330</a> <em class="jxr_javadoccomment">     * @return the issuerString (type String) of this AssertionWrapper object.</em>
+<a name="331" href="#331">331</a> <em class="jxr_javadoccomment">     */</em>
+<a name="332" href="#332">332</a>     <strong class="jxr_keyword">public</strong> String getIssuerString() {
+<a name="333" href="#333">333</a>         <strong class="jxr_keyword">if</strong> (saml2 != <strong class="jxr_keyword">null</strong> &amp;&amp; saml2.getIssuer() != <strong class="jxr_keyword">null</strong>) {
+<a name="334" href="#334">334</a>             <strong class="jxr_keyword">return</strong> saml2.getIssuer().getValue();
+<a name="335" href="#335">335</a>         } <strong class="jxr_keyword">else</strong> <strong class="jxr_keyword">if</strong> (saml1 != <strong class="jxr_keyword">null</strong>) {
+<a name="336" href="#336">336</a>             <strong class="jxr_keyword">return</strong> saml1.getIssuer();
+<a name="337" href="#337">337</a>         }
+<a name="338" href="#338">338</a>         log.error(
+<a name="339" href="#339">339</a>             <span class="jxr_string">"AssertionWrapper: unable to return Issuer string - no saml assertion "</span>
+<a name="340" href="#340">340</a>             + <span class="jxr_string">"object or issuer is null"</span>
+<a name="341" href="#341">341</a>         );
+<a name="342" href="#342">342</a>         <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">null</strong>;
+<a name="343" href="#343">343</a>     }
+<a name="344" href="#344">344</a> 
+<a name="345" href="#345">345</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="346" href="#346">346</a> <em class="jxr_javadoccomment">     * Method getConfirmationMethods returns the confirmationMethods of this </em>
+<a name="347" href="#347">347</a> <em class="jxr_javadoccomment">     * AssertionWrapper object.</em>
+<a name="348" href="#348">348</a> <em class="jxr_javadoccomment">     *</em>
+<a name="349" href="#349">349</a> <em class="jxr_javadoccomment">     * @return the confirmationMethods of this AssertionWrapper object.</em>
+<a name="350" href="#350">350</a> <em class="jxr_javadoccomment">     */</em>
+<a name="351" href="#351">351</a>     <strong class="jxr_keyword">public</strong> List&lt;String&gt; getConfirmationMethods() {
+<a name="352" href="#352">352</a>         List&lt;String&gt; methods = <strong class="jxr_keyword">new</strong> ArrayList&lt;String&gt;();
+<a name="353" href="#353">353</a>         <strong class="jxr_keyword">if</strong> (saml2 != <strong class="jxr_keyword">null</strong>) {
+<a name="354" href="#354">354</a>             org.opensaml.saml2.core.Subject subject = saml2.getSubject();
+<a name="355" href="#355">355</a>             List&lt;org.opensaml.saml2.core.SubjectConfirmation&gt; confirmations = 
+<a name="356" href="#356">356</a>                 subject.getSubjectConfirmations();
+<a name="357" href="#357">357</a>             <strong class="jxr_keyword">for</strong> (org.opensaml.saml2.core.SubjectConfirmation confirmation : confirmations) {
+<a name="358" href="#358">358</a>                 methods.add(confirmation.getMethod());
+<a name="359" href="#359">359</a>             }
+<a name="360" href="#360">360</a>         } <strong class="jxr_keyword">else</strong> <strong class="jxr_keyword">if</strong> (saml1 != <strong class="jxr_keyword">null</strong>) {
+<a name="361" href="#361">361</a>             List&lt;SubjectStatement&gt; subjectStatements = <strong class="jxr_keyword">new</strong> ArrayList&lt;SubjectStatement&gt;();
+<a name="362" href="#362">362</a>             subjectStatements.addAll(saml1.getSubjectStatements());
+<a name="363" href="#363">363</a>             subjectStatements.addAll(saml1.getAuthenticationStatements());
+<a name="364" href="#364">364</a>             subjectStatements.addAll(saml1.getAttributeStatements());
+<a name="365" href="#365">365</a>             subjectStatements.addAll(saml1.getAuthorizationDecisionStatements());
+<a name="366" href="#366">366</a>             <strong class="jxr_keyword">for</strong> (SubjectStatement subjectStatement : subjectStatements) {
+<a name="367" href="#367">367</a>                 Subject subject = subjectStatement.getSubject();
+<a name="368" href="#368">368</a>                 <strong class="jxr_keyword">if</strong> (subject != <strong class="jxr_keyword">null</strong>) {
+<a name="369" href="#369">369</a>                     SubjectConfirmation confirmation = subject.getSubjectConfirmation();
+<a name="370" href="#370">370</a>                     <strong class="jxr_keyword">if</strong> (confirmation != <strong class="jxr_keyword">null</strong>) {
+<a name="371" href="#371">371</a>                         XMLObject data = confirmation.getSubjectConfirmationData();
+<a name="372" href="#372">372</a>                         <strong class="jxr_keyword">if</strong> (data instanceof ConfirmationMethod) {
+<a name="373" href="#373">373</a>                             ConfirmationMethod method = (ConfirmationMethod) data;
+<a name="374" href="#374">374</a>                             methods.add(method.getConfirmationMethod());
+<a name="375" href="#375">375</a>                         }
+<a name="376" href="#376">376</a>                         List&lt;ConfirmationMethod&gt; confirmationMethods = 
+<a name="377" href="#377">377</a>                             confirmation.getConfirmationMethods();
+<a name="378" href="#378">378</a>                         <strong class="jxr_keyword">for</strong> (ConfirmationMethod confirmationMethod : confirmationMethods) {
+<a name="379" href="#379">379</a>                             methods.add(confirmationMethod.getConfirmationMethod());
+<a name="380" href="#380">380</a>                         }
+<a name="381" href="#381">381</a>                     }
+<a name="382" href="#382">382</a>                 }
+<a name="383" href="#383">383</a>             }
+<a name="384" href="#384">384</a>         }
+<a name="385" href="#385">385</a>         <strong class="jxr_keyword">return</strong> methods;
+<a name="386" href="#386">386</a>     }
+<a name="387" href="#387">387</a> 
+<a name="388" href="#388">388</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="389" href="#389">389</a> <em class="jxr_javadoccomment">     * Method isSigned returns the signed of this AssertionWrapper object.</em>
+<a name="390" href="#390">390</a> <em class="jxr_javadoccomment">     *</em>
+<a name="391" href="#391">391</a> <em class="jxr_javadoccomment">     * @return the signed (type boolean) of this AssertionWrapper object.</em>
+<a name="392" href="#392">392</a> <em class="jxr_javadoccomment">     */</em>
+<a name="393" href="#393">393</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> isSigned() {
+<a name="394" href="#394">394</a>         <strong class="jxr_keyword">if</strong> (saml2 != <strong class="jxr_keyword">null</strong>) {
+<a name="395" href="#395">395</a>             <strong class="jxr_keyword">return</strong> saml2.isSigned() || saml2.getSignature() != <strong class="jxr_keyword">null</strong>;
+<a name="396" href="#396">396</a>         } <strong class="jxr_keyword">else</strong> <strong class="jxr_keyword">if</strong> (saml1 != <strong class="jxr_keyword">null</strong>) {
+<a name="397" href="#397">397</a>             <strong class="jxr_keyword">return</strong> saml1.isSigned() || saml1.getSignature() != <strong class="jxr_keyword">null</strong>;
+<a name="398" href="#398">398</a>         }
+<a name="399" href="#399">399</a>         <strong class="jxr_keyword">return</strong> false;
 <a name="400" href="#400">400</a>     }
 <a name="401" href="#401">401</a> 
 <a name="402" href="#402">402</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="403" href="#403">403</a> <em class="jxr_javadoccomment">     * Method getId returns the id of this AssertionWrapper object.</em>
+<a name="403" href="#403">403</a> <em class="jxr_javadoccomment">     * Method setSignature sets the signature of this AssertionWrapper object.</em>
 <a name="404" href="#404">404</a> <em class="jxr_javadoccomment">     *</em>
-<a name="405" href="#405">405</a> <em class="jxr_javadoccomment">     * @return the id (type String) of this AssertionWrapper object.</em>
+<a name="405" href="#405">405</a> <em class="jxr_javadoccomment">     * @param signature the signature of this AssertionWrapper object.</em>
 <a name="406" href="#406">406</a> <em class="jxr_javadoccomment">     */</em>
-<a name="407" href="#407">407</a>     <strong class="jxr_keyword">public</strong> String getId() {
-<a name="408" href="#408">408</a>         String id = <strong class="jxr_keyword">null</strong>;
-<a name="409" href="#409">409</a>         <strong class="jxr_keyword">if</strong> (saml2 != <strong class="jxr_keyword">null</strong>) {
-<a name="410" href="#410">410</a>             id = saml2.getID();
-<a name="411" href="#411">411</a>         } <strong class="jxr_keyword">else</strong> <strong class="jxr_keyword">if</strong> (saml1 != <strong class="jxr_keyword">null</strong>) {
-<a name="412" href="#412">412</a>             id = saml1.getID();
+<a name="407" href="#407">407</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setSignature(Signature signature) {
+<a name="408" href="#408">408</a>         <strong class="jxr_keyword">if</strong> (xmlObject instanceof SignableSAMLObject) {
+<a name="409" href="#409">409</a>             SignableSAMLObject signableObject = (SignableSAMLObject) xmlObject;
+<a name="410" href="#410">410</a>             signableObject.setSignature(signature);
+<a name="411" href="#411">411</a>             signableObject.releaseDOM();
+<a name="412" href="#412">412</a>             signableObject.releaseChildrenDOM(<strong class="jxr_keyword">true</strong>);
 <a name="413" href="#413">413</a>         } <strong class="jxr_keyword">else</strong> {
-<a name="414" href="#414">414</a>             log.error(<span class="jxr_string">"AssertionWrapper: unable to return ID - no saml assertion object"</span>);
+<a name="414" href="#414">414</a>             log.error(<span class="jxr_string">"Attempt to sign an unsignable object "</span> + xmlObject.getClass().getName());
 <a name="415" href="#415">415</a>         }
-<a name="416" href="#416">416</a>         <strong class="jxr_keyword">if</strong> (id == <strong class="jxr_keyword">null</strong> || id.length() == 0) {
-<a name="417" href="#417">417</a>             log.error(<span class="jxr_string">"AssertionWrapper: ID was null, seeting a new ID value"</span>);
-<a name="418" href="#418">418</a>             id = <span class="jxr_string">"_"</span> + UUIDGenerator.getUUID();
-<a name="419" href="#419">419</a>             <strong class="jxr_keyword">if</strong> (saml2 != <strong class="jxr_keyword">null</strong>) {
-<a name="420" href="#420">420</a>                 saml2.setID(id);
-<a name="421" href="#421">421</a>             } <strong class="jxr_keyword">else</strong> <strong class="jxr_keyword">if</strong> (saml1 != <strong class="jxr_keyword">null</strong>) {
-<a name="422" href="#422">422</a>                 saml1.setID(id);
-<a name="423" href="#423">423</a>             }
-<a name="424" href="#424">424</a>         }
-<a name="425" href="#425">425</a>         <strong class="jxr_keyword">return</strong> id;
-<a name="426" href="#426">426</a>     }
-<a name="427" href="#427">427</a> 
-<a name="428" href="#428">428</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="429" href="#429">429</a> <em class="jxr_javadoccomment">     * Method getIssuerString returns the issuerString of this AssertionWrapper object.</em>
-<a name="430" href="#430">430</a> <em class="jxr_javadoccomment">     *</em>
-<a name="431" href="#431">431</a> <em class="jxr_javadoccomment">     * @return the issuerString (type String) of this AssertionWrapper object.</em>
-<a name="432" href="#432">432</a> <em class="jxr_javadoccomment">     */</em>
-<a name="433" href="#433">433</a>     <strong class="jxr_keyword">public</strong> String getIssuerString() {
-<a name="434" href="#434">434</a>         <strong class="jxr_keyword">if</strong> (saml2 != <strong class="jxr_keyword">null</strong> &amp;&amp; saml2.getIssuer() != <strong class="jxr_keyword">null</strong>) {
-<a name="435" href="#435">435</a>             <strong class="jxr_keyword">return</strong> saml2.getIssuer().getValue();
-<a name="436" href="#436">436</a>         } <strong class="jxr_keyword">else</strong> <strong class="jxr_keyword">if</strong> (saml1 != <strong class="jxr_keyword">null</strong>) {
-<a name="437" href="#437">437</a>             <strong class="jxr_keyword">return</strong> saml1.getIssuer();
-<a name="438" href="#438">438</a>         }
-<a name="439" href="#439">439</a>         log.error(
-<a name="440" href="#440">440</a>             <span class="jxr_string">"AssertionWrapper: unable to return Issuer string - no saml assertion "</span>
-<a name="441" href="#441">441</a>             + <span class="jxr_string">"object or issuer is null"</span>
-<a name="442" href="#442">442</a>         );
-<a name="443" href="#443">443</a>         <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">null</strong>;
-<a name="444" href="#444">444</a>     }
-<a name="445" href="#445">445</a> 
-<a name="446" href="#446">446</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="447" href="#447">447</a> <em class="jxr_javadoccomment">     * Method getConfirmationMethods returns the confirmationMethods of this </em>
-<a name="448" href="#448">448</a> <em class="jxr_javadoccomment">     * AssertionWrapper object.</em>
-<a name="449" href="#449">449</a> <em class="jxr_javadoccomment">     *</em>
-<a name="450" href="#450">450</a> <em class="jxr_javadoccomment">     * @return the confirmationMethods of this AssertionWrapper object.</em>
-<a name="451" href="#451">451</a> <em class="jxr_javadoccomment">     */</em>
-<a name="452" href="#452">452</a>     <strong class="jxr_keyword">public</strong> List&lt;String&gt; getConfirmationMethods() {
-<a name="453" href="#453">453</a>         List&lt;String&gt; methods = <strong class="jxr_keyword">new</strong> ArrayList&lt;String&gt;();
-<a name="454" href="#454">454</a>         <strong class="jxr_keyword">if</strong> (saml2 != <strong class="jxr_keyword">null</strong>) {
-<a name="455" href="#455">455</a>             org.opensaml.saml2.core.Subject subject = saml2.getSubject();
-<a name="456" href="#456">456</a>             List&lt;org.opensaml.saml2.core.SubjectConfirmation&gt; confirmations = 
-<a name="457" href="#457">457</a>                 subject.getSubjectConfirmations();
-<a name="458" href="#458">458</a>             <strong class="jxr_keyword">for</strong> (org.opensaml.saml2.core.SubjectConfirmation confirmation : confirmations) {
-<a name="459" href="#459">459</a>                 methods.add(confirmation.getMethod());
-<a name="460" href="#460">460</a>             }
-<a name="461" href="#461">461</a>         } <strong class="jxr_keyword">else</strong> <strong class="jxr_keyword">if</strong> (saml1 != <strong class="jxr_keyword">null</strong>) {
-<a name="462" href="#462">462</a>             List&lt;SubjectStatement&gt; subjectStatements = <strong class="jxr_keyword">new</strong> ArrayList&lt;SubjectStatement&gt;();
-<a name="463" href="#463">463</a>             subjectStatements.addAll(saml1.getSubjectStatements());
-<a name="464" href="#464">464</a>             subjectStatements.addAll(saml1.getAuthenticationStatements());
-<a name="465" href="#465">465</a>             subjectStatements.addAll(saml1.getAttributeStatements());
-<a name="466" href="#466">466</a>             subjectStatements.addAll(saml1.getAuthorizationDecisionStatements());
-<a name="467" href="#467">467</a>             <strong class="jxr_keyword">for</strong> (SubjectStatement subjectStatement : subjectStatements) {
-<a name="468" href="#468">468</a>                 Subject subject = subjectStatement.getSubject();
-<a name="469" href="#469">469</a>                 <strong class="jxr_keyword">if</strong> (subject != <strong class="jxr_keyword">null</strong>) {
-<a name="470" href="#470">470</a>                     SubjectConfirmation confirmation = subject.getSubjectConfirmation();
-<a name="471" href="#471">471</a>                     <strong class="jxr_keyword">if</strong> (confirmation != <strong class="jxr_keyword">null</strong>) {
-<a name="472" href="#472">472</a>                         XMLObject data = confirmation.getSubjectConfirmationData();
-<a name="473" href="#473">473</a>                         <strong class="jxr_keyword">if</strong> (data instanceof ConfirmationMethod) {
-<a name="474" href="#474">474</a>                             ConfirmationMethod method = (ConfirmationMethod) data;
-<a name="475" href="#475">475</a>                             methods.add(method.getConfirmationMethod());
-<a name="476" href="#476">476</a>                         }
-<a name="477" href="#477">477</a>                         List&lt;ConfirmationMethod&gt; confirmationMethods = 
-<a name="478" href="#478">478</a>                             confirmation.getConfirmationMethods();
-<a name="479" href="#479">479</a>                         <strong class="jxr_keyword">for</strong> (ConfirmationMethod confirmationMethod : confirmationMethods) {
-<a name="480" href="#480">480</a>                             methods.add(confirmationMethod.getConfirmationMethod());
-<a name="481" href="#481">481</a>                         }
-<a name="482" href="#482">482</a>                     }
-<a name="483" href="#483">483</a>                 }
-<a name="484" href="#484">484</a>             }
-<a name="485" href="#485">485</a>         }
-<a name="486" href="#486">486</a>         <strong class="jxr_keyword">return</strong> methods;
-<a name="487" href="#487">487</a>     }
+<a name="416" href="#416">416</a>     }
+<a name="417" href="#417">417</a>     
+<a name="418" href="#418">418</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="419" href="#419">419</a> <em class="jxr_javadoccomment">     * Create an enveloped signature on the assertion that has been created.</em>
+<a name="420" href="#420">420</a> <em class="jxr_javadoccomment">     * </em>
+<a name="421" href="#421">421</a> <em class="jxr_javadoccomment">     * @param issuerKeyName the Issuer KeyName to use with the issuerCrypto argument</em>
+<a name="422" href="#422">422</a> <em class="jxr_javadoccomment">     * @param issuerKeyPassword the Issuer Password to use with the issuerCrypto argument</em>
+<a name="423" href="#423">423</a> <em class="jxr_javadoccomment">     * @param issuerCrypto the Issuer Crypto instance</em>
+<a name="424" href="#424">424</a> <em class="jxr_javadoccomment">     * @param sendKeyValue whether to send the key value or not</em>
+<a name="425" href="#425">425</a> <em class="jxr_javadoccomment">     * @throws WSSecurityException</em>
+<a name="426" href="#426">426</a> <em class="jxr_javadoccomment">     */</em>
+<a name="427" href="#427">427</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> signAssertion(String issuerKeyName, String issuerKeyPassword,
+<a name="428" href="#428">428</a>             <a href="../../../../../../org/apache/ws/security/components/crypto/Crypto.html">Crypto</a> issuerCrypto, <strong class="jxr_keyword">boolean</strong> sendKeyValue)
+<a name="429" href="#429">429</a>             <strong class="jxr_keyword">throws</strong> <a href="../../../../../../org/apache/ws/security/WSSecurityException.html">WSSecurityException</a> {
+<a name="430" href="#430">430</a> 
+<a name="431" href="#431">431</a>         signAssertion(issuerKeyName, issuerKeyPassword, issuerCrypto,
+<a name="432" href="#432">432</a>                 sendKeyValue, defaultCanonicalizationAlgorithm,
+<a name="433" href="#433">433</a>                 defaultRSASignatureAlgorithm);
+<a name="434" href="#434">434</a>     }
+<a name="435" href="#435">435</a>     
+<a name="436" href="#436">436</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="437" href="#437">437</a> <em class="jxr_javadoccomment">     * Create an enveloped signature on the assertion that has been created.</em>
+<a name="438" href="#438">438</a> <em class="jxr_javadoccomment">     * </em>
+<a name="439" href="#439">439</a> <em class="jxr_javadoccomment">     * @param issuerKeyName the Issuer KeyName to use with the issuerCrypto argument</em>
+<a name="440" href="#440">440</a> <em class="jxr_javadoccomment">     * @param issuerKeyPassword the Issuer Password to use with the issuerCrypto argument</em>
+<a name="441" href="#441">441</a> <em class="jxr_javadoccomment">     * @param issuerCrypto the Issuer Crypto instance</em>
+<a name="442" href="#442">442</a> <em class="jxr_javadoccomment">     * @param sendKeyValue whether to send the key value or not</em>
+<a name="443" href="#443">443</a> <em class="jxr_javadoccomment">     * @param canonicalizationAlgorithm the canonicalization algorithm to be used for signing</em>
+<a name="444" href="#444">444</a> <em class="jxr_javadoccomment">     * @param signatureAlgorithm the signature algorithm to be used for signing</em>
+<a name="445" href="#445">445</a> <em class="jxr_javadoccomment">     * @throws WSSecurityException</em>
+<a name="446" href="#446">446</a> <em class="jxr_javadoccomment">     */</em>
+<a name="447" href="#447">447</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> signAssertion(String issuerKeyName, String issuerKeyPassword,
+<a name="448" href="#448">448</a>             <a href="../../../../../../org/apache/ws/security/components/crypto/Crypto.html">Crypto</a> issuerCrypto, <strong class="jxr_keyword">boolean</strong> sendKeyValue,
+<a name="449" href="#449">449</a>             String canonicalizationAlgorithm, String signatureAlgorithm)
+<a name="450" href="#450">450</a>             <strong class="jxr_keyword">throws</strong> <a href="../../../../../../org/apache/ws/security/WSSecurityException.html">WSSecurityException</a> {
+<a name="451" href="#451">451</a>         <em class="jxr_comment">//</em>
+<a name="452" href="#452">452</a>         <em class="jxr_comment">// Create the signature</em>
+<a name="453" href="#453">453</a>         <em class="jxr_comment">//</em>
+<a name="454" href="#454">454</a>         Signature signature = OpenSAMLUtil.buildSignature();
+<a name="455" href="#455">455</a>         signature.setCanonicalizationAlgorithm(canonicalizationAlgorithm);
+<a name="456" href="#456">456</a>         log.debug(<span class="jxr_string">"Using Canonicalization algorithm "</span> + canonicalizationAlgorithm);
+<a name="457" href="#457">457</a>         <em class="jxr_comment">// prepare to sign the SAML token</em>
+<a name="458" href="#458">458</a>         <a href="../../../../../../org/apache/ws/security/components/crypto/CryptoType.html">CryptoType</a> cryptoType = <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/ws/security/components/crypto/CryptoType.html">CryptoType</a>(CryptoType.TYPE.ALIAS);
+<a name="459" href="#459">459</a>         cryptoType.setAlias(issuerKeyName);
+<a name="460" href="#460">460</a>         X509Certificate[] issuerCerts = issuerCrypto.getX509Certificates(cryptoType);
+<a name="461" href="#461">461</a>         <strong class="jxr_keyword">if</strong> (issuerCerts == <strong class="jxr_keyword">null</strong>) {
+<a name="462" href="#462">462</a>             <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/ws/security/WSSecurityException.html">WSSecurityException</a>(
+<a name="463" href="#463">463</a>                     <span class="jxr_string">"No issuer certs were found to sign the SAML Assertion using issuer name: "</span>
+<a name="464" href="#464">464</a>                             + issuerKeyName);
+<a name="465" href="#465">465</a>         }
+<a name="466" href="#466">466</a> 
+<a name="467" href="#467">467</a>         String sigAlgo = signatureAlgorithm;
+<a name="468" href="#468">468</a>         String pubKeyAlgo = issuerCerts[0].getPublicKey().getAlgorithm();
+<a name="469" href="#469">469</a>         <strong class="jxr_keyword">if</strong> (log.isDebugEnabled()) {
+<a name="470" href="#470">470</a>             log.debug(<span class="jxr_string">"automatic sig algo detection: "</span> + pubKeyAlgo);
+<a name="471" href="#471">471</a>         }
+<a name="472" href="#472">472</a>         <strong class="jxr_keyword">if</strong> (pubKeyAlgo.equalsIgnoreCase(<span class="jxr_string">"DSA"</span>)) {
+<a name="473" href="#473">473</a>             sigAlgo = defaultDSASignatureAlgorithm;
+<a name="474" href="#474">474</a>         }
+<a name="475" href="#475">475</a>         log.debug(<span class="jxr_string">"Using Signature algorithm "</span> + sigAlgo);
+<a name="476" href="#476">476</a>         PrivateKey privateKey = <strong class="jxr_keyword">null</strong>;
+<a name="477" href="#477">477</a>         <strong class="jxr_keyword">try</strong> {
+<a name="478" href="#478">478</a>             privateKey = issuerCrypto.getPrivateKey(issuerKeyName, issuerKeyPassword);
+<a name="479" href="#479">479</a>         } <strong class="jxr_keyword">catch</strong> (Exception ex) {
+<a name="480" href="#480">480</a>             <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/ws/security/WSSecurityException.html">WSSecurityException</a>(ex.getMessage(), ex);
+<a name="481" href="#481">481</a>         }
+<a name="482" href="#482">482</a> 
+<a name="483" href="#483">483</a>         signature.setSignatureAlgorithm(sigAlgo);
+<a name="484" href="#484">484</a> 
+<a name="485" href="#485">485</a>         BasicX509Credential signingCredential = <strong class="jxr_keyword">new</strong> BasicX509Credential();
+<a name="486" href="#486">486</a>         signingCredential.setEntityCertificate(issuerCerts[0]);
+<a name="487" href="#487">487</a>         signingCredential.setPrivateKey(privateKey);
 <a name="488" href="#488">488</a> 
-<a name="489" href="#489">489</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="490" href="#490">490</a> <em class="jxr_javadoccomment">     * Method isSigned returns the signed of this AssertionWrapper object.</em>
-<a name="491" href="#491">491</a> <em class="jxr_javadoccomment">     *</em>
-<a name="492" href="#492">492</a> <em class="jxr_javadoccomment">     * @return the signed (type boolean) of this AssertionWrapper object.</em>
-<a name="493" href="#493">493</a> <em class="jxr_javadoccomment">     */</em>
-<a name="494" href="#494">494</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> isSigned() {
-<a name="495" href="#495">495</a>         <strong class="jxr_keyword">if</strong> (saml2 != <strong class="jxr_keyword">null</strong>) {
-<a name="496" href="#496">496</a>             <strong class="jxr_keyword">return</strong> saml2.isSigned() || saml2.getSignature() != <strong class="jxr_keyword">null</strong>;
-<a name="497" href="#497">497</a>         } <strong class="jxr_keyword">else</strong> <strong class="jxr_keyword">if</strong> (saml1 != <strong class="jxr_keyword">null</strong>) {
-<a name="498" href="#498">498</a>             <strong class="jxr_keyword">return</strong> saml1.isSigned() || saml1.getSignature() != <strong class="jxr_keyword">null</strong>;
-<a name="499" href="#499">499</a>         }
-<a name="500" href="#500">500</a>         <strong class="jxr_keyword">return</strong> false;
-<a name="501" href="#501">501</a>     }
-<a name="502" href="#502">502</a> 
-<a name="503" href="#503">503</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="504" href="#504">504</a> <em class="jxr_javadoccomment">     * Method setSignature sets the signature of this AssertionWrapper object.</em>
-<a name="505" href="#505">505</a> <em class="jxr_javadoccomment">     *</em>
-<a name="506" href="#506">506</a> <em class="jxr_javadoccomment">     * @param signature the signature of this AssertionWrapper object.</em>
-<a name="507" href="#507">507</a> <em class="jxr_javadoccomment">     */</em>
-<a name="508" href="#508">508</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setSignature(Signature signature) {
-<a name="509" href="#509">509</a>         <strong class="jxr_keyword">if</strong> (xmlObject instanceof SignableSAMLObject) {
-<a name="510" href="#510">510</a>             SignableSAMLObject signableObject = (SignableSAMLObject) xmlObject;
-<a name="511" href="#511">511</a>             signableObject.setSignature(signature);
-<a name="512" href="#512">512</a>             signableObject.releaseDOM();
-<a name="513" href="#513">513</a>             signableObject.releaseChildrenDOM(<strong class="jxr_keyword">true</strong>);
-<a name="514" href="#514">514</a>         } <strong class="jxr_keyword">else</strong> {
-<a name="515" href="#515">515</a>             log.error(<span class="jxr_string">"Attempt to sign an unsignable object "</span> + xmlObject.getClass().getName());
-<a name="516" href="#516">516</a>         }
-<a name="517" href="#517">517</a>     }
-<a name="518" href="#518">518</a>     
-<a name="519" href="#519">519</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="520" href="#520">520</a> <em class="jxr_javadoccomment">     * Create an enveloped signature on the assertion that has been created.</em>
-<a name="521" href="#521">521</a> <em class="jxr_javadoccomment">     * </em>
-<a name="522" href="#522">522</a> <em class="jxr_javadoccomment">     * @param issuerKeyName the Issuer KeyName to use with the issuerCrypto argument</em>
-<a name="523" href="#523">523</a> <em class="jxr_javadoccomment">     * @param issuerKeyPassword the Issuer Password to use with the issuerCrypto argument</em>
-<a name="524" href="#524">524</a> <em class="jxr_javadoccomment">     * @param issuerCrypto the Issuer Crypto instance</em>
-<a name="525" href="#525">525</a> <em class="jxr_javadoccomment">     * @param sendKeyValue whether to send the key value or not</em>
-<a name="526" href="#526">526</a> <em class="jxr_javadoccomment">     * @throws WSSecurityException</em>
-<a name="527" href="#527">527</a> <em class="jxr_javadoccomment">     */</em>
-<a name="528" href="#528">528</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> signAssertion(String issuerKeyName, String issuerKeyPassword,
-<a name="529" href="#529">529</a>             <a href="../../../../../../org/apache/ws/security/components/crypto/Crypto.html">Crypto</a> issuerCrypto, <strong class="jxr_keyword">boolean</strong> sendKeyValue)
-<a name="530" href="#530">530</a>             <strong class="jxr_keyword">throws</strong> <a href="../../../../../../org/apache/ws/security/WSSecurityException.html">WSSecurityException</a> {
-<a name="531" href="#531">531</a> 
-<a name="532" href="#532">532</a>         signAssertion(issuerKeyName, issuerKeyPassword, issuerCrypto,
-<a name="533" href="#533">533</a>                 sendKeyValue, defaultCanonicalizationAlgorithm,
-<a name="534" href="#534">534</a>                 defaultRSASignatureAlgorithm);
-<a name="535" href="#535">535</a>     }
-<a name="536" href="#536">536</a>     
-<a name="537" href="#537">537</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="538" href="#538">538</a> <em class="jxr_javadoccomment">     * Create an enveloped signature on the assertion that has been created.</em>
-<a name="539" href="#539">539</a> <em class="jxr_javadoccomment">     * </em>
-<a name="540" href="#540">540</a> <em class="jxr_javadoccomment">     * @param issuerKeyName the Issuer KeyName to use with the issuerCrypto argument</em>
-<a name="541" href="#541">541</a> <em class="jxr_javadoccomment">     * @param issuerKeyPassword the Issuer Password to use with the issuerCrypto argument</em>
-<a name="542" href="#542">542</a> <em class="jxr_javadoccomment">     * @param issuerCrypto the Issuer Crypto instance</em>
-<a name="543" href="#543">543</a> <em class="jxr_javadoccomment">     * @param sendKeyValue whether to send the key value or not</em>
-<a name="544" href="#544">544</a> <em class="jxr_javadoccomment">     * @param canonicalizationAlgorithm the canonicalization algorithm to be used for signing</em>
-<a name="545" href="#545">545</a> <em class="jxr_javadoccomment">     * @param signatureAlgorithm the signature algorithm to be used for signing</em>
-<a name="546" href="#546">546</a> <em class="jxr_javadoccomment">     * @throws WSSecurityException</em>
-<a name="547" href="#547">547</a> <em class="jxr_javadoccomment">     */</em>
-<a name="548" href="#548">548</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> signAssertion(String issuerKeyName, String issuerKeyPassword,
-<a name="549" href="#549">549</a>             <a href="../../../../../../org/apache/ws/security/components/crypto/Crypto.html">Crypto</a> issuerCrypto, <strong class="jxr_keyword">boolean</strong> sendKeyValue,
-<a name="550" href="#550">550</a>             String canonicalizationAlgorithm, String signatureAlgorithm)
-<a name="551" href="#551">551</a>             <strong class="jxr_keyword">throws</strong> <a href="../../../../../../org/apache/ws/security/WSSecurityException.html">WSSecurityException</a> {
-<a name="552" href="#552">552</a>         <em class="jxr_comment">//</em>
-<a name="553" href="#553">553</a>         <em class="jxr_comment">// Create the signature</em>
-<a name="554" href="#554">554</a>         <em class="jxr_comment">//</em>
-<a name="555" href="#555">555</a>         Signature signature = OpenSAMLUtil.buildSignature();
-<a name="556" href="#556">556</a>         signature.setCanonicalizationAlgorithm(canonicalizationAlgorithm);
-<a name="557" href="#557">557</a>         log.debug(<span class="jxr_string">"Using Canonicalization algorithm "</span> + canonicalizationAlgorithm);
-<a name="558" href="#558">558</a>         <em class="jxr_comment">// prepare to sign the SAML token</em>
-<a name="559" href="#559">559</a>         <a href="../../../../../../org/apache/ws/security/components/crypto/CryptoType.html">CryptoType</a> cryptoType = <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/ws/security/components/crypto/CryptoType.html">CryptoType</a>(CryptoType.TYPE.ALIAS);
-<a name="560" href="#560">560</a>         cryptoType.setAlias(issuerKeyName);
-<a name="561" href="#561">561</a>         X509Certificate[] issuerCerts = issuerCrypto.getX509Certificates(cryptoType);
-<a name="562" href="#562">562</a>         <strong class="jxr_keyword">if</strong> (issuerCerts == <strong class="jxr_keyword">null</strong>) {
-<a name="563" href="#563">563</a>             <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/ws/security/WSSecurityException.html">WSSecurityException</a>(
-<a name="564" href="#564">564</a>                     <span class="jxr_string">"No issuer certs were found to sign the SAML Assertion using issuer name: "</span>
-<a name="565" href="#565">565</a>                             + issuerKeyName);
-<a name="566" href="#566">566</a>         }
-<a name="567" href="#567">567</a> 
-<a name="568" href="#568">568</a>         String sigAlgo = signatureAlgorithm;
-<a name="569" href="#569">569</a>         String pubKeyAlgo = issuerCerts[0].getPublicKey().getAlgorithm();
-<a name="570" href="#570">570</a>         <strong class="jxr_keyword">if</strong> (log.isDebugEnabled()) {
-<a name="571" href="#571">571</a>             log.debug(<span class="jxr_string">"automatic sig algo detection: "</span> + pubKeyAlgo);
-<a name="572" href="#572">572</a>         }
-<a name="573" href="#573">573</a>         <strong class="jxr_keyword">if</strong> (pubKeyAlgo.equalsIgnoreCase(<span class="jxr_string">"DSA"</span>)) {
-<a name="574" href="#574">574</a>             sigAlgo = defaultDSASignatureAlgorithm;
-<a name="575" href="#575">575</a>         }
-<a name="576" href="#576">576</a>         log.debug(<span class="jxr_string">"Using Signature algorithm "</span> + sigAlgo);
-<a name="577" href="#577">577</a>         PrivateKey privateKey = <strong class="jxr_keyword">null</strong>;
-<a name="578" href="#578">578</a>         <strong class="jxr_keyword">try</strong> {
-<a name="579" href="#579">579</a>             privateKey = issuerCrypto.getPrivateKey(issuerKeyName, issuerKeyPassword);
-<a name="580" href="#580">580</a>         } <strong class="jxr_keyword">catch</strong> (Exception ex) {
-<a name="581" href="#581">581</a>             <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/ws/security/WSSecurityException.html">WSSecurityException</a>(ex.getMessage(), ex);
-<a name="582" href="#582">582</a>         }
-<a name="583" href="#583">583</a> 
-<a name="584" href="#584">584</a>         signature.setSignatureAlgorithm(sigAlgo);
-<a name="585" href="#585">585</a> 
-<a name="586" href="#586">586</a>         BasicX509Credential signingCredential = <strong class="jxr_keyword">new</strong> BasicX509Credential();
-<a name="587" href="#587">587</a>         signingCredential.setEntityCertificate(issuerCerts[0]);
-<a name="588" href="#588">588</a>         signingCredential.setPrivateKey(privateKey);
-<a name="589" href="#589">589</a> 
-<a name="590" href="#590">590</a>         signature.setSigningCredential(signingCredential);
-<a name="591" href="#591">591</a> 
-<a name="592" href="#592">592</a>         X509KeyInfoGeneratorFactory kiFactory = <strong class="jxr_keyword">new</strong> X509KeyInfoGeneratorFactory();
-<a name="593" href="#593">593</a>         <strong class="jxr_keyword">if</strong> (sendKeyValue) {
-<a name="594" href="#594">594</a>             kiFactory.setEmitPublicKeyValue(<strong class="jxr_keyword">true</strong>);
-<a name="595" href="#595">595</a>         } <strong class="jxr_keyword">else</strong> {
-<a name="596" href="#596">596</a>             kiFactory.setEmitEntityCertificate(<strong class="jxr_keyword">true</strong>);
-<a name="597" href="#597">597</a>         }
-<a name="598" href="#598">598</a>         <strong class="jxr_keyword">try</strong> {
-<a name="599" href="#599">599</a>             KeyInfo keyInfo = kiFactory.newInstance().generate(
-<a name="600" href="#600">600</a>                     signingCredential);
-<a name="601" href="#601">601</a>             signature.setKeyInfo(keyInfo);
-<a name="602" href="#602">602</a>         } <strong class="jxr_keyword">catch</strong> (org.opensaml.xml.security.SecurityException ex) {
-<a name="603" href="#603">603</a>             <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/ws/security/WSSecurityException.html">WSSecurityException</a>(
-<a name="604" href="#604">604</a>                     <span class="jxr_string">"Error generating KeyInfo from signing credential"</span>, ex);
-<a name="605" href="#605">605</a>         }
-<a name="606" href="#606">606</a> 
-<a name="607" href="#607">607</a>         <em class="jxr_comment">// add the signature to the assertion</em>
-<a name="608" href="#608">608</a>         setSignature(signature);
-<a name="609" href="#609">609</a>     }
-<a name="610" href="#610">610</a> 
-<a name="611" href="#611">611</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="612" href="#612">612</a> <em class="jxr_javadoccomment">     * Verify the signature of this assertion</em>
-<a name="613" href="#613">613</a> <em class="jxr_javadoccomment">     *</em>
-<a name="614" href="#614">614</a> <em class="jxr_javadoccomment">     * @throws ValidationException</em>
-<a name="615" href="#615">615</a> <em class="jxr_javadoccomment">     */</em>
-<a name="616" href="#616">616</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> verifySignature(
-<a name="617" href="#617">617</a>         <a href="../../../../../../org/apache/ws/security/handler/RequestData.html">RequestData</a> data, <a href="../../../../../../org/apache/ws/security/WSDocInfo.html">WSDocInfo</a> docInfo
-<a name="618" href="#618">618</a>     ) <strong class="jxr_keyword">throws</strong> <a href="../../../../../../org/apache/ws/security/WSSecurityException.html">WSSecurityException</a> {
-<a name="619" href="#619">619</a>         Signature sig = <strong class="jxr_keyword">null</strong>;
-<a name="620" href="#620">620</a>         <strong class="jxr_keyword">if</strong> (saml2 != <strong class="jxr_keyword">null</strong> &amp;&amp; saml2.getSignature() != <strong class="jxr_keyword">null</strong>) {
-<a name="621" href="#621">621</a>             sig = saml2.getSignature();
-<a name="622" href="#622">622</a>         } <strong class="jxr_keyword">else</strong> <strong class="jxr_keyword">if</strong> (saml1 != <strong class="jxr_keyword">null</strong> &amp;&amp; saml1.getSignature() != <strong class="jxr_keyword">null</strong>) {
-<a name="623" href="#623">623</a>             sig = saml1.getSignature();
-<a name="624" href="#624">624</a>         }
-<a name="625" href="#625">625</a>         <strong class="jxr_keyword">if</strong> (sig != <strong class="jxr_keyword">null</strong>) {
-<a name="626" href="#626">626</a>             KeyInfo keyInfo = sig.getKeyInfo();
-<a name="627" href="#627">627</a>             <a href="../../../../../../org/apache/ws/security/saml/SAMLKeyInfo.html">SAMLKeyInfo</a> samlKeyInfo = 
-<a name="628" href="#628">628</a>                 SAMLUtil.getCredentialFromKeyInfo(
-<a name="629" href="#629">629</a>                     keyInfo.getDOM(), data, docInfo, data.getWssConfig().isWsiBSPCompliant()
-<a name="630" href="#630">630</a>                 );
-<a name="631" href="#631">631</a>             <strong class="jxr_keyword">if</strong> (samlKeyInfo == <strong class="jxr_keyword">null</strong>) {
-<a name="632" href="#632">632</a>                 <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/ws/security/WSSecurityException.html">WSSecurityException</a>(
-<a name="633" href="#633">633</a>                     WSSecurityException.FAILURE, <span class="jxr_string">"invalidSAMLsecurity"</span>,
-<a name="634" href="#634">634</a>                     <strong class="jxr_keyword">new</strong> Object[]{<span class="jxr_string">"cannot get certificate or key"</span>}
-<a name="635" href="#635">635</a>                 );
-<a name="636" href="#636">636</a>             }
-<a name="637" href="#637">637</a>             SAMLSignatureProfileValidator validator = <strong class="jxr_keyword">new</strong> SAMLSignatureProfileValidator();
-<a name="638" href="#638">638</a>             <strong class="jxr_keyword">try</strong> {
-<a name="639" href="#639">639</a>                 validator.validate(sig);
-<a name="640" href="#640">640</a>             } <strong class="jxr_keyword">catch</strong> (ValidationException ex) {
-<a name="641" href="#641">641</a>                 <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/ws/security/WSSecurityException.html">WSSecurityException</a>(<span class="jxr_string">"SAML signature validation failed"</span>, ex);
-<a name="642" href="#642">642</a>             }
-<a name="643" href="#643">643</a>             
-<a name="644" href="#644">644</a>             BasicX509Credential credential = <strong class="jxr_keyword">new</strong> BasicX509Credential();
-<a name="645" href="#645">645</a>             <strong class="jxr_keyword">if</strong> (samlKeyInfo.getCerts() != <strong class="jxr_keyword">null</strong>) {
-<a name="646" href="#646">646</a>                 credential.setEntityCertificate(samlKeyInfo.getCerts()[0]);
-<a name="647" href="#647">647</a>             } <strong class="jxr_keyword">else</strong> <strong class="jxr_keyword">if</strong> (samlKeyInfo.getPublicKey() != <strong class="jxr_keyword">null</strong>) {
-<a name="648" href="#648">648</a>                 credential.setPublicKey(samlKeyInfo.getPublicKey());
-<a name="649" href="#649">649</a>             } <strong class="jxr_keyword">else</strong> {
-<a name="650" href="#650">650</a>                 <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/ws/security/WSSecurityException.html">WSSecurityException</a>(
-<a name="651" href="#651">651</a>                     WSSecurityException.FAILURE, <span class="jxr_string">"invalidSAMLsecurity"</span>,
-<a name="652" href="#652">652</a>                     <strong class="jxr_keyword">new</strong> Object[]{<span class="jxr_string">"cannot get certificate or key"</span>}
-<a name="653" href="#653">653</a>                 );
-<a name="654" href="#654">654</a>             }
-<a name="655" href="#655">655</a>             SignatureValidator sigValidator = <strong class="jxr_keyword">new</strong> SignatureValidator(credential);
-<a name="656" href="#656">656</a>             <strong class="jxr_keyword">try</strong> {
-<a name="657" href="#657">657</a>                 sigValidator.validate(sig);
-<a name="658" href="#658">658</a>             } <strong class="jxr_keyword">catch</strong> (ValidationException ex) {
-<a name="659" href="#659">659</a>                 <strong class="jxr_keyword">throw</strong> <strong class="jxr_keyword">new</strong> <a href="../../../../../../org/apache/ws/security/WSSecurityException.html">WSSecurityException</a>(<span class="jxr_string">"SAML signature validation failed"</span>, ex);
-<a name="660" href="#660">660</a>             }
-<a name="661" href="#661">661</a>             signatureKeyInfo = samlKeyInfo;
-<a name="662" href="#662">662</a>         } <strong class="jxr_keyword">else</strong> {
-<a name="663" href="#663">663</a>             log.debug(<span class="jxr_string">"AssertionWrapper: no signature to validate"</span>);
-<a name="664" href="#664">664</a>         }
-<a name="665" href="#665">665</a>     }
-<a name="666" href="#666">666</a>     
-<a name="667" href="#667">667</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="668" href="#668">668</a> <em class="jxr_javadoccomment">     * This method parses the KeyInfo of the Subject for the holder-of-key confirmation</em>
-<a name="669" href="#669">669</a> <em class="jxr_javadoccomment">     * method, as required by the SAML Token spec. It then stores the SAMLKeyInfo object that</em>

[... 417 lines stripped ...]