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/10/03 17:16:11 UTC

svn commit: r1178426 [34/40] - 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=1178426&r1=1178425&r2=1178426&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 Mon Oct  3 15:15:52 2011
@@ -136,622 +136,653 @@
 <a name="126" href="#126">126</a>     <strong class="jxr_keyword">private</strong> <a href="../../../../../../org/apache/ws/security/saml/SAMLKeyInfo.html">SAMLKeyInfo</a> signatureKeyInfo;
 <a name="127" href="#127">127</a> 
 <a name="128" href="#128">128</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="129" href="#129">129</a> <em class="jxr_javadoccomment">     * Constructor AssertionWrapper creates a new AssertionWrapper instance.</em>
-<a name="130" href="#130">130</a> <em class="jxr_javadoccomment">     *</em>
-<a name="131" href="#131">131</a> <em class="jxr_javadoccomment">     * @param element of type Element</em>
-<a name="132" href="#132">132</a> <em class="jxr_javadoccomment">     * @throws UnmarshallingException when</em>
-<a name="133" href="#133">133</a> <em class="jxr_javadoccomment">     */</em>
-<a name="134" href="#134">134</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="135" href="#135">135</a>         OpenSAMLUtil.initSamlEngine();
-<a name="136" href="#136">136</a>         
-<a name="137" href="#137">137</a>         <strong class="jxr_keyword">this</strong>.xmlObject = OpenSAMLUtil.fromDom(element);
-<a name="138" href="#138">138</a>         <strong class="jxr_keyword">if</strong> (xmlObject instanceof org.opensaml.saml1.core.Assertion) {
-<a name="139" href="#139">139</a>             <strong class="jxr_keyword">this</strong>.saml1 = (org.opensaml.saml1.core.Assertion) xmlObject;
-<a name="140" href="#140">140</a>             samlVersion = SAMLVersion.VERSION_11;
-<a name="141" href="#141">141</a>         } <strong class="jxr_keyword">else</strong> <strong class="jxr_keyword">if</strong> (xmlObject instanceof org.opensaml.saml2.core.Assertion) {
-<a name="142" href="#142">142</a>             <strong class="jxr_keyword">this</strong>.saml2 = (org.opensaml.saml2.core.Assertion) xmlObject;
-<a name="143" href="#143">143</a>             samlVersion = SAMLVersion.VERSION_20;
-<a name="144" href="#144">144</a>         } <strong class="jxr_keyword">else</strong> {
-<a name="145" href="#145">145</a>             log.error(
-<a name="146" href="#146">146</a>                 <span class="jxr_string">"AssertionWrapper: found unexpected type "</span> 
-<a name="147" href="#147">147</a>                 + (xmlObject != <strong class="jxr_keyword">null</strong> ? xmlObject.getClass().getName() : xmlObject)
-<a name="148" href="#148">148</a>             );
-<a name="149" href="#149">149</a>         }
-<a name="150" href="#150">150</a>         
-<a name="151" href="#151">151</a>         assertionElement = element;
-<a name="152" href="#152">152</a>     }
-<a name="153" href="#153">153</a> 
-<a name="154" href="#154">154</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="155" href="#155">155</a> <em class="jxr_javadoccomment">     * Constructor AssertionWrapper creates a new AssertionWrapper instance.</em>
-<a name="156" href="#156">156</a> <em class="jxr_javadoccomment">     *</em>
-<a name="157" href="#157">157</a> <em class="jxr_javadoccomment">     * @param saml2 of type Assertion</em>
-<a name="158" href="#158">158</a> <em class="jxr_javadoccomment">     */</em>
-<a name="159" href="#159">159</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="160" href="#160">160</a>         <strong class="jxr_keyword">this</strong>((XMLObject)saml2);
-<a name="161" href="#161">161</a>     }
-<a name="162" href="#162">162</a> 
-<a name="163" href="#163">163</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="164" href="#164">164</a> <em class="jxr_javadoccomment">     * Constructor AssertionWrapper creates a new AssertionWrapper instance.</em>
-<a name="165" href="#165">165</a> <em class="jxr_javadoccomment">     *</em>
-<a name="166" href="#166">166</a> <em class="jxr_javadoccomment">     * @param saml1 of type Assertion</em>
-<a name="167" href="#167">167</a> <em class="jxr_javadoccomment">     */</em>
-<a name="168" href="#168">168</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="169" href="#169">169</a>         <strong class="jxr_keyword">this</strong>((XMLObject)saml1);
-<a name="170" href="#170">170</a>     }
-<a name="171" href="#171">171</a> 
-<a name="172" href="#172">172</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="173" href="#173">173</a> <em class="jxr_javadoccomment">     * Constructor AssertionWrapper creates a new AssertionWrapper instance.</em>
-<a name="174" href="#174">174</a> <em class="jxr_javadoccomment">     * This is the primary constructor.  All other constructor calls should</em>
-<a name="175" href="#175">175</a> <em class="jxr_javadoccomment">     * be routed to this method to ensure that the wrapper is initialized</em>
-<a name="176" href="#176">176</a> <em class="jxr_javadoccomment">     * correctly.</em>
-<a name="177" href="#177">177</a> <em class="jxr_javadoccomment">     *</em>
-<a name="178" href="#178">178</a> <em class="jxr_javadoccomment">     * @param xmlObject of type XMLObject</em>
-<a name="179" href="#179">179</a> <em class="jxr_javadoccomment">     */</em>
-<a name="180" href="#180">180</a>     <strong class="jxr_keyword">public</strong> <a href="../../../../../../org/apache/ws/security/saml/ext/AssertionWrapper.html">AssertionWrapper</a>(XMLObject xmlObject) {
-<a name="181" href="#181">181</a>         OpenSAMLUtil.initSamlEngine();
-<a name="182" href="#182">182</a>         
-<a name="183" href="#183">183</a>         <strong class="jxr_keyword">this</strong>.xmlObject = xmlObject;
-<a name="184" href="#184">184</a>         <strong class="jxr_keyword">if</strong> (xmlObject instanceof org.opensaml.saml1.core.Assertion) {
-<a name="185" href="#185">185</a>             <strong class="jxr_keyword">this</strong>.saml1 = (org.opensaml.saml1.core.Assertion) xmlObject;
-<a name="186" href="#186">186</a>             samlVersion = SAMLVersion.VERSION_11;
-<a name="187" href="#187">187</a>         } <strong class="jxr_keyword">else</strong> <strong class="jxr_keyword">if</strong> (xmlObject instanceof org.opensaml.saml2.core.Assertion) {
-<a name="188" href="#188">188</a>             <strong class="jxr_keyword">this</strong>.saml2 = (org.opensaml.saml2.core.Assertion) xmlObject;
-<a name="189" href="#189">189</a>             samlVersion = SAMLVersion.VERSION_20;
-<a name="190" href="#190">190</a>         } <strong class="jxr_keyword">else</strong> {
-<a name="191" href="#191">191</a>             log.error(
-<a name="192" href="#192">192</a>                 <span class="jxr_string">"AssertionWrapper: found unexpected type "</span> 
-<a name="193" href="#193">193</a>                 + (xmlObject != <strong class="jxr_keyword">null</strong> ? xmlObject.getClass().getName() : xmlObject)
-<a name="194" href="#194">194</a>             );
-<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>     <em class="jxr_javadoccomment">/**</em>
-<a name="199" href="#199">199</a> <em class="jxr_javadoccomment">     * Constructor AssertionWrapper creates a new AssertionWrapper instance.</em>
-<a name="200" href="#200">200</a> <em class="jxr_javadoccomment">     * This constructor is primarily called on the client side to initialize</em>
-<a name="201" href="#201">201</a> <em class="jxr_javadoccomment">     * the wrapper from a configuration file. &lt;br&gt;</em>
-<a name="202" href="#202">202</a> <em class="jxr_javadoccomment">     * NOTE: The OpenSaml library MUST be initialized prior to constructing an AssertionWrapper</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>         samlVersion = samlCallbacks[0].getSamlVersion();
-<a name="234" href="#234">234</a>         <strong class="jxr_keyword">if</strong> (samlVersion == <strong class="jxr_keyword">null</strong>) {
-<a name="235" href="#235">235</a>             samlVersion = parms.getSAMLVersion();
-<a name="236" href="#236">236</a>         }
-<a name="237" href="#237">237</a>         String issuer = samlCallbacks[0].getIssuer();
-<a name="238" href="#238">238</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="239" href="#239">239</a>             issuer = parms.getIssuer();
-<a name="240" href="#240">240</a>         }
-<a name="241" href="#241">241</a>         <strong class="jxr_keyword">if</strong> (samlVersion.equals(SAMLVersion.VERSION_11)) {
-<a name="242" href="#242">242</a>             <em class="jxr_comment">// Build a SAML v1.1 assertion</em>
-<a name="243" href="#243">243</a>             saml1 = SAML1ComponentBuilder.createSamlv1Assertion(issuer);
-<a name="244" href="#244">244</a> 
-<a name="245" href="#245">245</a>             <strong class="jxr_keyword">try</strong> {
-<a name="246" href="#246">246</a>                 <em class="jxr_comment">// Process the SAML authentication statement(s)</em>
-<a name="247" href="#247">247</a>                 List&lt;AuthenticationStatement&gt; authenticationStatements = 
-<a name="248" href="#248">248</a>                     SAML1ComponentBuilder.createSamlv1AuthenticationStatement(
-<a name="249" href="#249">249</a>                         samlCallbacks[0].getAuthenticationStatementData()
-<a name="250" href="#250">250</a>                     );
-<a name="251" href="#251">251</a>                 saml1.getAuthenticationStatements().addAll(authenticationStatements);
-<a name="252" href="#252">252</a>     
-<a name="253" href="#253">253</a>                 <em class="jxr_comment">// Process the SAML attribute statement(s)            </em>
-<a name="254" href="#254">254</a>                 List&lt;AttributeStatement&gt; attributeStatements =
-<a name="255" href="#255">255</a>                         SAML1ComponentBuilder.createSamlv1AttributeStatement(
-<a name="256" href="#256">256</a>                             samlCallbacks[0].getAttributeStatementData()
-<a name="257" href="#257">257</a>                         );
-<a name="258" href="#258">258</a>                 saml1.getAttributeStatements().addAll(attributeStatements);
-<a name="259" href="#259">259</a>     
-<a name="260" href="#260">260</a>                 <em class="jxr_comment">// Process the SAML authorization decision statement(s)</em>
-<a name="261" href="#261">261</a>                 List&lt;AuthorizationDecisionStatement&gt; authDecisionStatements =
-<a name="262" href="#262">262</a>                         SAML1ComponentBuilder.createSamlv1AuthorizationDecisionStatement(
-<a name="263" href="#263">263</a>                             samlCallbacks[0].getAuthDecisionStatementData()
-<a name="264" href="#264">264</a>                         );
-<a name="265" href="#265">265</a>                 saml1.getAuthorizationDecisionStatements().addAll(authDecisionStatements);
-<a name="266" href="#266">266</a>     
-<a name="267" href="#267">267</a>                 <em class="jxr_comment">// Build the complete assertion</em>
-<a name="268" href="#268">268</a>                 org.opensaml.saml1.core.Conditions conditions = 
-<a name="269" href="#269">269</a>                     SAML1ComponentBuilder.createSamlv1Conditions(samlCallbacks[0].getConditions());
-<a name="270" href="#270">270</a>                 saml1.setConditions(conditions);
-<a name="271" href="#271">271</a>             } <strong class="jxr_keyword">catch</strong> (org.opensaml.xml.security.SecurityException ex) {
-<a name="272" href="#272">272</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="273" href="#273">273</a>                     <span class="jxr_string">"Error generating KeyInfo from signing credential"</span>, ex
-<a name="274" href="#274">274</a>                 );
-<a name="275" href="#275">275</a>             }
-<a name="276" href="#276">276</a> 
-<a name="277" href="#277">277</a>             <em class="jxr_comment">// Set the OpenSaml2 XMLObject instance</em>
-<a name="278" href="#278">278</a>             xmlObject = saml1;
-<a name="279" href="#279">279</a> 
-<a name="280" href="#280">280</a>         } <strong class="jxr_keyword">else</strong> <strong class="jxr_keyword">if</strong> (samlVersion.equals(SAMLVersion.VERSION_20)) {
-<a name="281" href="#281">281</a>             <em class="jxr_comment">// Build a SAML v2.0 assertion</em>
-<a name="282" href="#282">282</a>             saml2 = SAML2ComponentBuilder.createAssertion();
-<a name="283" href="#283">283</a>             Issuer samlIssuer = SAML2ComponentBuilder.createIssuer(issuer);
-<a name="284" href="#284">284</a> 
-<a name="285" href="#285">285</a>             <em class="jxr_comment">// Authn Statement(s)</em>
-<a name="286" href="#286">286</a>             List&lt;AuthnStatement&gt; authnStatements = 
-<a name="287" href="#287">287</a>                 SAML2ComponentBuilder.createAuthnStatement(
-<a name="288" href="#288">288</a>                     samlCallbacks[0].getAuthenticationStatementData()
+<a name="129" href="#129">129</a> <em class="jxr_javadoccomment">     * Default Canonicalization algorithm used for signing.</em>
+<a name="130" href="#130">130</a> <em class="jxr_javadoccomment">     */</em>
+<a name="131" href="#131">131</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">final</strong> String defaultCanonicalizationAlgorithm = SignatureConstants.ALGO_ID_C14N_EXCL_OMIT_COMMENTS;
+<a name="132" href="#132">132</a> 
+<a name="133" href="#133">133</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="134" href="#134">134</a> <em class="jxr_javadoccomment">     * Default RSA Signature algorithm used for signing.</em>
+<a name="135" href="#135">135</a> <em class="jxr_javadoccomment">     */</em>
+<a name="136" href="#136">136</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">final</strong> String defaultRSASignatureAlgorithm = SignatureConstants.ALGO_ID_SIGNATURE_RSA_SHA1;
+<a name="137" href="#137">137</a> 
+<a name="138" href="#138">138</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="139" href="#139">139</a> <em class="jxr_javadoccomment">     * Default DSA Signature algorithm used for signing.</em>
+<a name="140" href="#140">140</a> <em class="jxr_javadoccomment">     */</em>
+<a name="141" href="#141">141</a>     <strong class="jxr_keyword">private</strong> <strong class="jxr_keyword">final</strong> String defaultDSASignatureAlgorithm = SignatureConstants.ALGO_ID_SIGNATURE_DSA;
+<a name="142" href="#142">142</a>     
+<a name="143" href="#143">143</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="144" href="#144">144</a> <em class="jxr_javadoccomment">     * Constructor AssertionWrapper creates a new AssertionWrapper instance.</em>
+<a name="145" href="#145">145</a> <em class="jxr_javadoccomment">     *</em>
+<a name="146" href="#146">146</a> <em class="jxr_javadoccomment">     * @param element of type Element</em>
+<a name="147" href="#147">147</a> <em class="jxr_javadoccomment">     * @throws UnmarshallingException when</em>
+<a name="148" href="#148">148</a> <em class="jxr_javadoccomment">     */</em>
+<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="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>             saml2.getAuthnStatements().addAll(authnStatements);
+<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">// Attribute statement(s)</em>
-<a name="293" href="#293">293</a>             List&lt;org.opensaml.saml2.core.AttributeStatement&gt; attributeStatements = 
-<a name="294" href="#294">294</a>                 SAML2ComponentBuilder.createAttributeStatement(
-<a name="295" href="#295">295</a>                     samlCallbacks[0].getAttributeStatementData()
-<a name="296" href="#296">296</a>                 );
-<a name="297" href="#297">297</a>             saml2.getAttributeStatements().addAll(attributeStatements);
-<a name="298" href="#298">298</a> 
-<a name="299" href="#299">299</a>             <em class="jxr_comment">// AuthzDecisionStatement(s)</em>
-<a name="300" href="#300">300</a>             List&lt;AuthzDecisionStatement&gt; authDecisionStatements =
-<a name="301" href="#301">301</a>                     SAML2ComponentBuilder.createAuthorizationDecisionStatement(
-<a name="302" href="#302">302</a>                         samlCallbacks[0].getAuthDecisionStatementData()
-<a name="303" href="#303">303</a>                     );
-<a name="304" href="#304">304</a>             saml2.getAuthzDecisionStatements().addAll(authDecisionStatements);
-<a name="305" href="#305">305</a> 
-<a name="306" href="#306">306</a>             <em class="jxr_comment">// Build the SAML v2.0 assertion</em>
-<a name="307" href="#307">307</a>             saml2.setIssuer(samlIssuer);
-<a name="308" href="#308">308</a>             
-<a name="309" href="#309">309</a>             <strong class="jxr_keyword">try</strong> {
-<a name="310" href="#310">310</a>                 org.opensaml.saml2.core.Subject subject = 
-<a name="311" href="#311">311</a>                     SAML2ComponentBuilder.createSaml2Subject(samlCallbacks[0].getSubject());
-<a name="312" href="#312">312</a>                 saml2.setSubject(subject);
-<a name="313" href="#313">313</a>             } <strong class="jxr_keyword">catch</strong> (org.opensaml.xml.security.SecurityException ex) {
-<a name="314" href="#314">314</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="315" href="#315">315</a>                     <span class="jxr_string">"Error generating KeyInfo from signing credential"</span>, ex
-<a name="316" href="#316">316</a>                 );
-<a name="317" href="#317">317</a>             }
-<a name="318" href="#318">318</a>             
-<a name="319" href="#319">319</a>             org.opensaml.saml2.core.Conditions conditions = 
-<a name="320" href="#320">320</a>                 SAML2ComponentBuilder.createConditions(samlCallbacks[0].getConditions());
-<a name="321" href="#321">321</a>             saml2.setConditions(conditions);
-<a name="322" href="#322">322</a> 
-<a name="323" href="#323">323</a>             <em class="jxr_comment">// Set the OpenSaml2 XMLObject instance</em>
-<a name="324" href="#324">324</a>             xmlObject = saml2;
-<a name="325" href="#325">325</a>         }
-<a name="326" href="#326">326</a>     }
-<a name="327" href="#327">327</a> 
-<a name="328" href="#328">328</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="329" href="#329">329</a> <em class="jxr_javadoccomment">     * Method getSaml1 returns the saml1 of this AssertionWrapper object.</em>
-<a name="330" href="#330">330</a> <em class="jxr_javadoccomment">     *</em>
-<a name="331" href="#331">331</a> <em class="jxr_javadoccomment">     * @return the saml1 (type Assertion) of this AssertionWrapper object.</em>
-<a name="332" href="#332">332</a> <em class="jxr_javadoccomment">     */</em>
-<a name="333" href="#333">333</a>     <strong class="jxr_keyword">public</strong> org.opensaml.saml1.core.Assertion getSaml1() {
-<a name="334" href="#334">334</a>         <strong class="jxr_keyword">return</strong> saml1;
-<a name="335" href="#335">335</a>     }
-<a name="336" href="#336">336</a> 
-<a name="337" href="#337">337</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="338" href="#338">338</a> <em class="jxr_javadoccomment">     * Method getSaml2 returns the saml2 of this AssertionWrapper object.</em>
-<a name="339" href="#339">339</a> <em class="jxr_javadoccomment">     *</em>
-<a name="340" href="#340">340</a> <em class="jxr_javadoccomment">     * @return the saml2 (type Assertion) of this AssertionWrapper object.</em>
-<a name="341" href="#341">341</a> <em class="jxr_javadoccomment">     */</em>
-<a name="342" href="#342">342</a>     <strong class="jxr_keyword">public</strong> org.opensaml.saml2.core.Assertion getSaml2() {
-<a name="343" href="#343">343</a>         <strong class="jxr_keyword">return</strong> saml2;
-<a name="344" href="#344">344</a>     }
-<a name="345" href="#345">345</a> 
-<a name="346" href="#346">346</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="347" href="#347">347</a> <em class="jxr_javadoccomment">     * Method getXmlObject returns the xmlObject of this 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 xmlObject (type XMLObject) 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> XMLObject getXmlObject() {
-<a name="352" href="#352">352</a>         <strong class="jxr_keyword">return</strong> xmlObject;
-<a name="353" href="#353">353</a>     }
-<a name="354" href="#354">354</a> 
-<a name="355" href="#355">355</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="356" href="#356">356</a> <em class="jxr_javadoccomment">     * Method isCreated returns the created of this AssertionWrapper object.</em>
-<a name="357" href="#357">357</a> <em class="jxr_javadoccomment">     *</em>
-<a name="358" href="#358">358</a> <em class="jxr_javadoccomment">     * @return the created (type boolean) of this AssertionWrapper object.</em>
-<a name="359" href="#359">359</a> <em class="jxr_javadoccomment">     */</em>
-<a name="360" href="#360">360</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> isCreated() {
-<a name="361" href="#361">361</a>         <strong class="jxr_keyword">return</strong> saml1 != <strong class="jxr_keyword">null</strong> || saml2 != <strong class="jxr_keyword">null</strong>;
-<a name="362" href="#362">362</a>     }
-<a name="363" href="#363">363</a> 
-<a name="364" href="#364">364</a> 
-<a name="365" href="#365">365</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="366" href="#366">366</a> <em class="jxr_javadoccomment">     * Create a DOM from the current XMLObject content. If the user-supplied doc is not null,</em>
-<a name="367" href="#367">367</a> <em class="jxr_javadoccomment">     * reparent the returned Element so that it is compatible with the user-supplied document.</em>
-<a name="368" href="#368">368</a> <em class="jxr_javadoccomment">     *</em>
-<a name="369" href="#369">369</a> <em class="jxr_javadoccomment">     * @param doc of type Document</em>
-<a name="370" href="#370">370</a> <em class="jxr_javadoccomment">     * @return Element</em>
-<a name="371" href="#371">371</a> <em class="jxr_javadoccomment">     */</em>
-<a name="372" href="#372">372</a>     <strong class="jxr_keyword">public</strong> Element toDOM(Document doc) <strong class="jxr_keyword">throws</strong> WSSecurityException {
-<a name="373" href="#373">373</a>         assertionElement = OpenSAMLUtil.toDom(xmlObject, doc);
-<a name="374" href="#374">374</a>         <strong class="jxr_keyword">return</strong> assertionElement;
-<a name="375" href="#375">375</a>     }
-<a name="376" href="#376">376</a> 
-<a name="377" href="#377">377</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="378" href="#378">378</a> <em class="jxr_javadoccomment">     * Method assertionToString ...</em>
-<a name="379" href="#379">379</a> <em class="jxr_javadoccomment">     *</em>
-<a name="380" href="#380">380</a> <em class="jxr_javadoccomment">     * @return String</em>
-<a name="381" href="#381">381</a> <em class="jxr_javadoccomment">     */</em>
-<a name="382" href="#382">382</a>     <strong class="jxr_keyword">public</strong> String assertionToString() <strong class="jxr_keyword">throws</strong> WSSecurityException {
-<a name="383" href="#383">383</a>         Element element = toDOM(<strong class="jxr_keyword">null</strong>);
-<a name="384" href="#384">384</a>         <strong class="jxr_keyword">return</strong> DOM2Writer.nodeToString(element);
-<a name="385" href="#385">385</a>     }
-<a name="386" href="#386">386</a> 
-<a name="387" href="#387">387</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="388" href="#388">388</a> <em class="jxr_javadoccomment">     * Method getId returns the id of this AssertionWrapper object.</em>
-<a name="389" href="#389">389</a> <em class="jxr_javadoccomment">     *</em>
-<a name="390" href="#390">390</a> <em class="jxr_javadoccomment">     * @return the id (type String) of this AssertionWrapper object.</em>
-<a name="391" href="#391">391</a> <em class="jxr_javadoccomment">     */</em>
-<a name="392" href="#392">392</a>     <strong class="jxr_keyword">public</strong> String getId() {
-<a name="393" href="#393">393</a>         String id = <strong class="jxr_keyword">null</strong>;
-<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>             id = saml2.getID();
-<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>             id = saml1.getID();
-<a name="398" href="#398">398</a>         } <strong class="jxr_keyword">else</strong> {
-<a name="399" href="#399">399</a>             log.error(<span class="jxr_string">"AssertionWrapper: unable to return ID - no saml assertion object"</span>);
-<a name="400" href="#400">400</a>         }
-<a name="401" href="#401">401</a>         <strong class="jxr_keyword">if</strong> (id == <strong class="jxr_keyword">null</strong> || id.length() == 0) {
-<a name="402" href="#402">402</a>             log.error(<span class="jxr_string">"AssertionWrapper: ID was null, seeting a new ID value"</span>);
-<a name="403" href="#403">403</a>             id = UUIDGenerator.getUUID();
-<a name="404" href="#404">404</a>             <strong class="jxr_keyword">if</strong> (saml2 != <strong class="jxr_keyword">null</strong>) {
-<a name="405" href="#405">405</a>                 saml2.setID(id);
-<a name="406" href="#406">406</a>             } <strong class="jxr_keyword">else</strong> <strong class="jxr_keyword">if</strong> (saml1 != <strong class="jxr_keyword">null</strong>) {
-<a name="407" href="#407">407</a>                 saml1.setID(id);
-<a name="408" href="#408">408</a>             }
-<a name="409" href="#409">409</a>         }
-<a name="410" href="#410">410</a>         <strong class="jxr_keyword">return</strong> id;
-<a name="411" href="#411">411</a>     }
-<a name="412" href="#412">412</a> 
-<a name="413" href="#413">413</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="414" href="#414">414</a> <em class="jxr_javadoccomment">     * Method getIssuerString returns the issuerString of this AssertionWrapper object.</em>
-<a name="415" href="#415">415</a> <em class="jxr_javadoccomment">     *</em>
-<a name="416" href="#416">416</a> <em class="jxr_javadoccomment">     * @return the issuerString (type String) of this AssertionWrapper object.</em>
-<a name="417" href="#417">417</a> <em class="jxr_javadoccomment">     */</em>
-<a name="418" href="#418">418</a>     <strong class="jxr_keyword">public</strong> String getIssuerString() {
-<a name="419" href="#419">419</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="420" href="#420">420</a>             <strong class="jxr_keyword">return</strong> saml2.getIssuer().getValue();
-<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>             <strong class="jxr_keyword">return</strong> saml1.getIssuer();
-<a name="423" href="#423">423</a>         }
-<a name="424" href="#424">424</a>         log.error(
-<a name="425" href="#425">425</a>             <span class="jxr_string">"AssertionWrapper: unable to return Issuer string - no saml assertion "</span>
-<a name="426" href="#426">426</a>             + <span class="jxr_string">"object or issuer is null"</span>
-<a name="427" href="#427">427</a>         );
-<a name="428" href="#428">428</a>         <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">null</strong>;
-<a name="429" href="#429">429</a>     }
-<a name="430" href="#430">430</a> 
-<a name="431" href="#431">431</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="432" href="#432">432</a> <em class="jxr_javadoccomment">     * Method getConfirmationMethods returns the confirmationMethods of this </em>
-<a name="433" href="#433">433</a> <em class="jxr_javadoccomment">     * AssertionWrapper object.</em>
-<a name="434" href="#434">434</a> <em class="jxr_javadoccomment">     *</em>
-<a name="435" href="#435">435</a> <em class="jxr_javadoccomment">     * @return the confirmationMethods of this AssertionWrapper object.</em>
-<a name="436" href="#436">436</a> <em class="jxr_javadoccomment">     */</em>
-<a name="437" href="#437">437</a>     <strong class="jxr_keyword">public</strong> List&lt;String&gt; getConfirmationMethods() {
-<a name="438" href="#438">438</a>         List&lt;String&gt; methods = <strong class="jxr_keyword">new</strong> ArrayList&lt;String&gt;();
-<a name="439" href="#439">439</a>         <strong class="jxr_keyword">if</strong> (saml2 != <strong class="jxr_keyword">null</strong>) {
-<a name="440" href="#440">440</a>             org.opensaml.saml2.core.Subject subject = saml2.getSubject();
-<a name="441" href="#441">441</a>             List&lt;org.opensaml.saml2.core.SubjectConfirmation&gt; confirmations = 
-<a name="442" href="#442">442</a>                 subject.getSubjectConfirmations();
-<a name="443" href="#443">443</a>             <strong class="jxr_keyword">for</strong> (org.opensaml.saml2.core.SubjectConfirmation confirmation : confirmations) {
-<a name="444" href="#444">444</a>                 methods.add(confirmation.getMethod());
-<a name="445" href="#445">445</a>             }
-<a name="446" href="#446">446</a>         } <strong class="jxr_keyword">else</strong> <strong class="jxr_keyword">if</strong> (saml1 != <strong class="jxr_keyword">null</strong>) {
-<a name="447" href="#447">447</a>             List&lt;SubjectStatement&gt; subjectStatements = <strong class="jxr_keyword">new</strong> ArrayList&lt;SubjectStatement&gt;();
-<a name="448" href="#448">448</a>             subjectStatements.addAll(saml1.getSubjectStatements());
-<a name="449" href="#449">449</a>             subjectStatements.addAll(saml1.getAuthenticationStatements());
-<a name="450" href="#450">450</a>             subjectStatements.addAll(saml1.getAttributeStatements());
-<a name="451" href="#451">451</a>             subjectStatements.addAll(saml1.getAuthorizationDecisionStatements());
-<a name="452" href="#452">452</a>             <strong class="jxr_keyword">for</strong> (SubjectStatement subjectStatement : subjectStatements) {
-<a name="453" href="#453">453</a>                 Subject subject = subjectStatement.getSubject();
-<a name="454" href="#454">454</a>                 <strong class="jxr_keyword">if</strong> (subject != <strong class="jxr_keyword">null</strong>) {
-<a name="455" href="#455">455</a>                     SubjectConfirmation confirmation = subject.getSubjectConfirmation();
-<a name="456" href="#456">456</a>                     <strong class="jxr_keyword">if</strong> (confirmation != <strong class="jxr_keyword">null</strong>) {
-<a name="457" href="#457">457</a>                         XMLObject data = confirmation.getSubjectConfirmationData();
-<a name="458" href="#458">458</a>                         <strong class="jxr_keyword">if</strong> (data instanceof ConfirmationMethod) {
-<a name="459" href="#459">459</a>                             ConfirmationMethod method = (ConfirmationMethod) data;
-<a name="460" href="#460">460</a>                             methods.add(method.getConfirmationMethod());
-<a name="461" href="#461">461</a>                         }
-<a name="462" href="#462">462</a>                         List&lt;ConfirmationMethod&gt; confirmationMethods = 
-<a name="463" href="#463">463</a>                             confirmation.getConfirmationMethods();
-<a name="464" href="#464">464</a>                         <strong class="jxr_keyword">for</strong> (ConfirmationMethod confirmationMethod : confirmationMethods) {
-<a name="465" href="#465">465</a>                             methods.add(confirmationMethod.getConfirmationMethod());
-<a name="466" href="#466">466</a>                         }
-<a name="467" href="#467">467</a>                     }
-<a name="468" href="#468">468</a>                 }
-<a name="469" href="#469">469</a>             }
-<a name="470" href="#470">470</a>         }
-<a name="471" href="#471">471</a>         <strong class="jxr_keyword">return</strong> methods;
-<a name="472" href="#472">472</a>     }
-<a name="473" href="#473">473</a> 
-<a name="474" href="#474">474</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="475" href="#475">475</a> <em class="jxr_javadoccomment">     * Method isSigned returns the signed of this AssertionWrapper object.</em>
-<a name="476" href="#476">476</a> <em class="jxr_javadoccomment">     *</em>
-<a name="477" href="#477">477</a> <em class="jxr_javadoccomment">     * @return the signed (type boolean) of this AssertionWrapper object.</em>
-<a name="478" href="#478">478</a> <em class="jxr_javadoccomment">     */</em>
-<a name="479" href="#479">479</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">boolean</strong> isSigned() {
-<a name="480" href="#480">480</a>         <strong class="jxr_keyword">if</strong> (saml2 != <strong class="jxr_keyword">null</strong>) {
-<a name="481" href="#481">481</a>             <strong class="jxr_keyword">return</strong> saml2.isSigned() || saml2.getSignature() != <strong class="jxr_keyword">null</strong>;
-<a name="482" href="#482">482</a>         } <strong class="jxr_keyword">else</strong> <strong class="jxr_keyword">if</strong> (saml1 != <strong class="jxr_keyword">null</strong>) {
-<a name="483" href="#483">483</a>             <strong class="jxr_keyword">return</strong> saml1.isSigned() || saml1.getSignature() != <strong class="jxr_keyword">null</strong>;
-<a name="484" href="#484">484</a>         }
-<a name="485" href="#485">485</a>         <strong class="jxr_keyword">return</strong> false;
-<a name="486" href="#486">486</a>     }
-<a name="487" href="#487">487</a> 
-<a name="488" href="#488">488</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="489" href="#489">489</a> <em class="jxr_javadoccomment">     * Method setSignature sets the signature of this AssertionWrapper object.</em>
-<a name="490" href="#490">490</a> <em class="jxr_javadoccomment">     *</em>
-<a name="491" href="#491">491</a> <em class="jxr_javadoccomment">     * @param signature the signature of this AssertionWrapper object.</em>
-<a name="492" href="#492">492</a> <em class="jxr_javadoccomment">     */</em>
-<a name="493" href="#493">493</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> setSignature(Signature signature) {
-<a name="494" href="#494">494</a>         <strong class="jxr_keyword">if</strong> (xmlObject instanceof SignableSAMLObject) {
-<a name="495" href="#495">495</a>             SignableSAMLObject signableObject = (SignableSAMLObject) xmlObject;
-<a name="496" href="#496">496</a>             signableObject.setSignature(signature);
-<a name="497" href="#497">497</a>             signableObject.releaseDOM();
-<a name="498" href="#498">498</a>             signableObject.releaseChildrenDOM(<strong class="jxr_keyword">true</strong>);
-<a name="499" href="#499">499</a>         } <strong class="jxr_keyword">else</strong> {
-<a name="500" href="#500">500</a>             log.error(<span class="jxr_string">"Attempt to sign an unsignable object "</span> + xmlObject.getClass().getName());
-<a name="501" href="#501">501</a>         }
-<a name="502" href="#502">502</a>     }
-<a name="503" href="#503">503</a>     
-<a name="504" href="#504">504</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="505" href="#505">505</a> <em class="jxr_javadoccomment">     * Create an enveloped signature on the assertion that has been created.</em>
-<a name="506" href="#506">506</a> <em class="jxr_javadoccomment">     * </em>
-<a name="507" href="#507">507</a> <em class="jxr_javadoccomment">     * @param issuerKeyName the Issuer KeyName to use with the issuerCrypto argument</em>
-<a name="508" href="#508">508</a> <em class="jxr_javadoccomment">     * @param issuerKeyPassword the Issuer Password to use with the issuerCrypto argument</em>
-<a name="509" href="#509">509</a> <em class="jxr_javadoccomment">     * @param issuerCrypto the Issuer Crypto instance</em>
-<a name="510" href="#510">510</a> <em class="jxr_javadoccomment">     * @param sendKeyValue whether to send the key value or not</em>
-<a name="511" href="#511">511</a> <em class="jxr_javadoccomment">     * @throws WSSecurityException</em>
-<a name="512" href="#512">512</a> <em class="jxr_javadoccomment">     */</em>
-<a name="513" href="#513">513</a>     <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> signAssertion(
-<a name="514" href="#514">514</a>         String issuerKeyName,
-<a name="515" href="#515">515</a>         String issuerKeyPassword,
-<a name="516" href="#516">516</a>         <a href="../../../../../../org/apache/ws/security/components/crypto/Crypto.html">Crypto</a> issuerCrypto,
-<a name="517" href="#517">517</a>         <strong class="jxr_keyword">boolean</strong> sendKeyValue
-<a name="518" href="#518">518</a>     ) <strong class="jxr_keyword">throws</strong> <a href="../../../../../../org/apache/ws/security/WSSecurityException.html">WSSecurityException</a> {
-<a name="519" href="#519">519</a>         <em class="jxr_comment">//</em>
-<a name="520" href="#520">520</a>         <em class="jxr_comment">// Create the signature</em>
-<a name="521" href="#521">521</a>         <em class="jxr_comment">//</em>
-<a name="522" href="#522">522</a>         Signature signature = OpenSAMLUtil.buildSignature();
-<a name="523" href="#523">523</a>         signature.setCanonicalizationAlgorithm(
-<a name="524" href="#524">524</a>             SignatureConstants.ALGO_ID_C14N_EXCL_OMIT_COMMENTS
-<a name="525" href="#525">525</a>         );
-<a name="526" href="#526">526</a>         
-<a name="527" href="#527">527</a>         <em class="jxr_comment">// prepare to sign the SAML token</em>
-<a name="528" href="#528">528</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="529" href="#529">529</a>         cryptoType.setAlias(issuerKeyName);
-<a name="530" href="#530">530</a>         X509Certificate[] issuerCerts = issuerCrypto.getX509Certificates(cryptoType);
-<a name="531" href="#531">531</a>         <strong class="jxr_keyword">if</strong> (issuerCerts == <strong class="jxr_keyword">null</strong>) {
-<a name="532" href="#532">532</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="533" href="#533">533</a>                 <span class="jxr_string">"No issuer certs were found to sign the SAML Assertion using issuer name: "</span>
-<a name="534" href="#534">534</a>                 + issuerKeyName
-<a name="535" href="#535">535</a>             );
-<a name="536" href="#536">536</a>         }
-<a name="537" href="#537">537</a> 
-<a name="538" href="#538">538</a>         String sigAlgo = SignatureConstants.ALGO_ID_SIGNATURE_RSA_SHA1;
-<a name="539" href="#539">539</a>         String pubKeyAlgo = issuerCerts[0].getPublicKey().getAlgorithm();
-<a name="540" href="#540">540</a>         <strong class="jxr_keyword">if</strong> (log.isDebugEnabled()) {
-<a name="541" href="#541">541</a>             log.debug(<span class="jxr_string">"automatic sig algo detection: "</span> + pubKeyAlgo);
-<a name="542" href="#542">542</a>         }
-<a name="543" href="#543">543</a>         <strong class="jxr_keyword">if</strong> (pubKeyAlgo.equalsIgnoreCase(<span class="jxr_string">"DSA"</span>)) {
-<a name="544" href="#544">544</a>             sigAlgo = SignatureConstants.ALGO_ID_SIGNATURE_DSA;
-<a name="545" href="#545">545</a>         }
-<a name="546" href="#546">546</a>         PrivateKey privateKey = <strong class="jxr_keyword">null</strong>;
-<a name="547" href="#547">547</a>         <strong class="jxr_keyword">try</strong> {
-<a name="548" href="#548">548</a>             privateKey = issuerCrypto.getPrivateKey(issuerKeyName, issuerKeyPassword);
-<a name="549" href="#549">549</a>         } <strong class="jxr_keyword">catch</strong> (Exception ex) {
-<a name="550" href="#550">550</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="551" href="#551">551</a>         }
-<a name="552" href="#552">552</a> 
-<a name="553" href="#553">553</a>         signature.setSignatureAlgorithm(sigAlgo);
-<a name="554" href="#554">554</a> 
-<a name="555" href="#555">555</a>         BasicX509Credential signingCredential = <strong class="jxr_keyword">new</strong> BasicX509Credential();
-<a name="556" href="#556">556</a>         signingCredential.setEntityCertificate(issuerCerts[0]);
-<a name="557" href="#557">557</a>         signingCredential.setPrivateKey(privateKey);
-<a name="558" href="#558">558</a> 
-<a name="559" href="#559">559</a>         signature.setSigningCredential(signingCredential);
-<a name="560" href="#560">560</a> 
-<a name="561" href="#561">561</a>         X509KeyInfoGeneratorFactory kiFactory = <strong class="jxr_keyword">new</strong> X509KeyInfoGeneratorFactory();
-<a name="562" href="#562">562</a>         <strong class="jxr_keyword">if</strong> (sendKeyValue) {
-<a name="563" href="#563">563</a>             kiFactory.setEmitPublicKeyValue(<strong class="jxr_keyword">true</strong>);
-<a name="564" href="#564">564</a>         } <strong class="jxr_keyword">else</strong> {
-<a name="565" href="#565">565</a>             kiFactory.setEmitEntityCertificate(<strong class="jxr_keyword">true</strong>);
+<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="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="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="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="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="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="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>) {

[... 395 lines stripped ...]