Modified: webservices/wss4j/site/xref/org/apache/ws/security/WSDocInfo.html
URL: 
http://svn.apache.org/viewvc/webservices/wss4j/site/xref/org/apache/ws/security/WSDocInfo.html?rev=1133081&r1=1133080&r2=1133081&view=diff
==============================================================================
--- webservices/wss4j/site/xref/org/apache/ws/security/WSDocInfo.html (original)
+++ webservices/wss4j/site/xref/org/apache/ws/security/WSDocInfo.html Tue Jun  
7 16:25:20 2011
@@ -55,194 +55,219 @@
 <a name="45" href="#45">45</a>      <strong 
class="jxr_keyword">private</strong> Document doc = <strong 
class="jxr_keyword">null</strong>;
 <a name="46" href="#46">46</a>      <strong 
class="jxr_keyword">private</strong> <a 
href="../../../../org/apache/ws/security/components/crypto/Crypto.html">Crypto</a>
 crypto = <strong class="jxr_keyword">null</strong>;
 <a name="47" href="#47">47</a>      <strong 
class="jxr_keyword">private</strong> List&lt;Element&gt; tokenList = <strong 
class="jxr_keyword">null</strong>;
-<a name="48" href="#48">48</a>      <strong 
class="jxr_keyword">private</strong> List&lt;Element&gt; elementList = <strong 
class="jxr_keyword">null</strong>;
-<a name="49" href="#49">49</a>      <strong 
class="jxr_keyword">private</strong> List&lt;WSSecurityEngineResult&gt; 
resultsList = <strong class="jxr_keyword">null</strong>;
-<a name="50" href="#50">50</a>      <strong 
class="jxr_keyword">private</strong> <a 
href="../../../../org/apache/ws/security/message/CallbackLookup.html">CallbackLookup</a>
 callbackLookup = <strong class="jxr_keyword">null</strong>;
-<a name="51" href="#51">51</a>  
-<a name="52" href="#52">52</a>      <strong 
class="jxr_keyword">public</strong> <a 
href="../../../../org/apache/ws/security/WSDocInfo.html">WSDocInfo</a>(Document 
doc) {
-<a name="53" href="#53">53</a>          <em class="jxr_comment">//</em>
-<a name="54" href="#54">54</a>          <em class="jxr_comment">// This is a 
bit of a hack. When the Document is a SAAJ SOAPPart instance, it may</em>
-<a name="55" href="#55">55</a>          <em class="jxr_comment">// be that the 
"owner" document of any child elements is an internal Document, rather</em>
-<a name="56" href="#56">56</a>          <em class="jxr_comment">// than the 
SOAPPart. This is the case for the SUN SAAJ implementation.</em>
-<a name="57" href="#57">57</a>          <em class="jxr_comment">//</em>
-<a name="58" href="#58">58</a>          <strong 
class="jxr_keyword">this</strong>.doc = 
doc.getDocumentElement().getOwnerDocument();
-<a name="59" href="#59">59</a>      }
-<a name="60" href="#60">60</a>      
-<a name="61" href="#61">61</a>      <em class="jxr_javadoccomment">/**</em>
-<a name="62" href="#62">62</a>  <em class="jxr_javadoccomment">     * Clears 
the data stored in this object</em>
-<a name="63" href="#63">63</a>  <em class="jxr_javadoccomment">     */</em>
-<a name="64" href="#64">64</a>      <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
clear() {
-<a name="65" href="#65">65</a>          crypto = <strong 
class="jxr_keyword">null</strong>;
-<a name="66" href="#66">66</a>          <strong 
class="jxr_keyword">if</strong> (tokenList != <strong 
class="jxr_keyword">null</strong> &amp;&amp; tokenList.size() &gt; 0) {
-<a name="67" href="#67">67</a>              tokenList.clear();
-<a name="68" href="#68">68</a>          }
-<a name="69" href="#69">69</a>          <strong 
class="jxr_keyword">if</strong> (elementList != <strong 
class="jxr_keyword">null</strong> &amp;&amp; elementList.size() &gt; 0) {
-<a name="70" href="#70">70</a>              elementList.clear();
-<a name="71" href="#71">71</a>          }
-<a name="72" href="#72">72</a>          <strong 
class="jxr_keyword">if</strong> (resultsList != <strong 
class="jxr_keyword">null</strong> &amp;&amp; resultsList.size() &gt; 0) {
-<a name="73" href="#73">73</a>              resultsList.clear();
-<a name="74" href="#74">74</a>          }
-<a name="75" href="#75">75</a>          
-<a name="76" href="#76">76</a>          tokenList = <strong 
class="jxr_keyword">null</strong>;
-<a name="77" href="#77">77</a>          elementList = <strong 
class="jxr_keyword">null</strong>;
-<a name="78" href="#78">78</a>          resultsList = <strong 
class="jxr_keyword">null</strong>;
-<a name="79" href="#79">79</a>      }
-<a name="80" href="#80">80</a>      
-<a name="81" href="#81">81</a>      <em class="jxr_javadoccomment">/**</em>
-<a name="82" href="#82">82</a>  <em class="jxr_javadoccomment">     * Store a 
token element for later retrieval. The token element is one of:</em>
-<a name="83" href="#83">83</a>  <em class="jxr_javadoccomment">     *  - 
SecurityTokenReference element</em>
-<a name="84" href="#84">84</a>  <em class="jxr_javadoccomment">     *  - 
BinarySecurityToken element</em>
-<a name="85" href="#85">85</a>  <em class="jxr_javadoccomment">     *  - SAML 
Assertion element</em>
-<a name="86" href="#86">86</a>  <em class="jxr_javadoccomment">     *  - 
SecurityContextToken element</em>
-<a name="87" href="#87">87</a>  <em class="jxr_javadoccomment">     *  - 
UsernameToken element</em>
-<a name="88" href="#88">88</a>  <em class="jxr_javadoccomment">     *  - 
DerivedKeyToken element</em>
-<a name="89" href="#89">89</a>  <em class="jxr_javadoccomment">     *  - 
Timestamp element</em>
-<a name="90" href="#90">90</a>  <em class="jxr_javadoccomment">     * @param 
elem is the token element to store</em>
+<a name="48" href="#48">48</a>      <strong 
class="jxr_keyword">private</strong> List&lt;WSSecurityEngineResult&gt; 
resultsList = <strong class="jxr_keyword">null</strong>;
+<a name="49" href="#49">49</a>      <strong 
class="jxr_keyword">private</strong> <a 
href="../../../../org/apache/ws/security/message/CallbackLookup.html">CallbackLookup</a>
 callbackLookup = <strong class="jxr_keyword">null</strong>;
+<a name="50" href="#50">50</a>  
+<a name="51" href="#51">51</a>      <strong 
class="jxr_keyword">public</strong> <a 
href="../../../../org/apache/ws/security/WSDocInfo.html">WSDocInfo</a>(Document 
doc) {
+<a name="52" href="#52">52</a>          <em class="jxr_comment">//</em>
+<a name="53" href="#53">53</a>          <em class="jxr_comment">// This is a 
bit of a hack. When the Document is a SAAJ SOAPPart instance, it may</em>
+<a name="54" href="#54">54</a>          <em class="jxr_comment">// be that the 
"owner" document of any child elements is an internal Document, rather</em>
+<a name="55" href="#55">55</a>          <em class="jxr_comment">// than the 
SOAPPart. This is the case for the SUN SAAJ implementation.</em>
+<a name="56" href="#56">56</a>          <em class="jxr_comment">//</em>
+<a name="57" href="#57">57</a>          <strong 
class="jxr_keyword">this</strong>.doc = 
doc.getDocumentElement().getOwnerDocument();
+<a name="58" href="#58">58</a>      }
+<a name="59" href="#59">59</a>      
+<a name="60" href="#60">60</a>      <em class="jxr_javadoccomment">/**</em>
+<a name="61" href="#61">61</a>  <em class="jxr_javadoccomment">     * Clears 
the data stored in this object</em>
+<a name="62" href="#62">62</a>  <em class="jxr_javadoccomment">     */</em>
+<a name="63" href="#63">63</a>      <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
clear() {
+<a name="64" href="#64">64</a>          crypto = <strong 
class="jxr_keyword">null</strong>;
+<a name="65" href="#65">65</a>          <strong 
class="jxr_keyword">if</strong> (tokenList != <strong 
class="jxr_keyword">null</strong> &amp;&amp; tokenList.size() &gt; 0) {
+<a name="66" href="#66">66</a>              tokenList.clear();
+<a name="67" href="#67">67</a>          }
+<a name="68" href="#68">68</a>          <strong 
class="jxr_keyword">if</strong> (resultsList != <strong 
class="jxr_keyword">null</strong> &amp;&amp; resultsList.size() &gt; 0) {
+<a name="69" href="#69">69</a>              resultsList.clear();
+<a name="70" href="#70">70</a>          }
+<a name="71" href="#71">71</a>          
+<a name="72" href="#72">72</a>          tokenList = <strong 
class="jxr_keyword">null</strong>;
+<a name="73" href="#73">73</a>          resultsList = <strong 
class="jxr_keyword">null</strong>;
+<a name="74" href="#74">74</a>      }
+<a name="75" href="#75">75</a>      
+<a name="76" href="#76">76</a>      <em class="jxr_javadoccomment">/**</em>
+<a name="77" href="#77">77</a>  <em class="jxr_javadoccomment">     * Store a 
token element for later retrieval. Before storing the token, we check for a 
</em>
+<a name="78" href="#78">78</a>  <em class="jxr_javadoccomment">     * 
previously processed token with the same (wsu/SAML) Id.</em>
+<a name="79" href="#79">79</a>  <em class="jxr_javadoccomment">     * @param 
element is the token element to store</em>
+<a name="80" href="#80">80</a>  <em class="jxr_javadoccomment">     * 
@deprecated</em>
+<a name="81" href="#81">81</a>  <em class="jxr_javadoccomment">     */</em>
+<a name="82" href="#82">82</a>      <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
addTokenElement(Element element) <strong class="jxr_keyword">throws</strong> 
WSSecurityException {
+<a name="83" href="#83">83</a>          addTokenElement(element, <strong 
class="jxr_keyword">true</strong>);
+<a name="84" href="#84">84</a>      }
+<a name="85" href="#85">85</a>      
+<a name="86" href="#86">86</a>      <em class="jxr_javadoccomment">/**</em>
+<a name="87" href="#87">87</a>  <em class="jxr_javadoccomment">     * Store a 
token element for later retrieval. Before storing the token, we check for a 
</em>
+<a name="88" href="#88">88</a>  <em class="jxr_javadoccomment">     * 
previously processed token with the same (wsu/SAML) Id.</em>
+<a name="89" href="#89">89</a>  <em class="jxr_javadoccomment">     * @param 
element is the token element to store</em>
+<a name="90" href="#90">90</a>  <em class="jxr_javadoccomment">     * @param 
checkMultipleElements check for a previously stored element with the same 
Id.</em>
 <a name="91" href="#91">91</a>  <em class="jxr_javadoccomment">     */</em>
-<a name="92" href="#92">92</a>      <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
addTokenElement(Element elem) {
+<a name="92" href="#92">92</a>      <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
addTokenElement(Element element, <strong class="jxr_keyword">boolean</strong> 
checkMultipleElements) <strong class="jxr_keyword">throws</strong> 
WSSecurityException {
 <a name="93" href="#93">93</a>          <strong 
class="jxr_keyword">if</strong> (tokenList == <strong 
class="jxr_keyword">null</strong>) {
 <a name="94" href="#94">94</a>              tokenList = <strong 
class="jxr_keyword">new</strong> ArrayList&lt;Element&gt;();
 <a name="95" href="#95">95</a>          }
-<a name="96" href="#96">96</a>          tokenList.add(elem);
-<a name="97" href="#97">97</a>      }
-<a name="98" href="#98">98</a>      
-<a name="99" href="#99">99</a>      <em class="jxr_javadoccomment">/**</em>
-<a name="100" href="#100">100</a> <em class="jxr_javadoccomment">     * Get a 
token Element for the given Id. The Id can be either a wsu:Id or a </em>
-<a name="101" href="#101">101</a> <em class="jxr_javadoccomment">     * SAML 
AssertionID/ID.</em>
-<a name="102" href="#102">102</a> <em class="jxr_javadoccomment">     * TODO 
think about if it is better to restrict the default Id to wsu:Id?</em>
-<a name="103" href="#103">103</a> <em class="jxr_javadoccomment">     * @param 
uri is the (relative) uri of the id</em>
-<a name="104" href="#104">104</a> <em class="jxr_javadoccomment">     * 
@return the token element or null if nothing found</em>
-<a name="105" href="#105">105</a> <em class="jxr_javadoccomment">     */</em>
-<a name="106" href="#106">106</a>     <strong 
class="jxr_keyword">public</strong> Element getTokenElement(String uri) {
-<a name="107" href="#107">107</a>         String id = uri;
-<a name="108" href="#108">108</a>         <strong 
class="jxr_keyword">if</strong> (id == <strong 
class="jxr_keyword">null</strong>) {
-<a name="109" href="#109">109</a>             <strong 
class="jxr_keyword">return</strong> <strong class="jxr_keyword">null</strong>;
-<a name="110" href="#110">110</a>         } <strong 
class="jxr_keyword">else</strong> <strong class="jxr_keyword">if</strong> 
(id.charAt(0) == '#') {
-<a name="111" href="#111">111</a>             id = id.substring(1);
-<a name="112" href="#112">112</a>         }
-<a name="113" href="#113">113</a>         <strong 
class="jxr_keyword">if</strong> (tokenList != <strong 
class="jxr_keyword">null</strong>) {
-<a name="114" href="#114">114</a>             <strong 
class="jxr_keyword">for</strong> (Element elem : tokenList) {
-<a name="115" href="#115">115</a>                 String cId = 
elem.getAttributeNS(WSConstants.WSU_NS, <span class="jxr_string">"Id"</span>);
-<a name="116" href="#116">116</a>                 String samlId = 
elem.getAttribute(<span class="jxr_string">"AssertionID"</span>);
-<a name="117" href="#117">117</a>                 String samlId2 = 
elem.getAttribute(<span class="jxr_string">"ID"</span>);
-<a name="118" href="#118">118</a>                 <strong 
class="jxr_keyword">if</strong> (id.equals(cId) || id.equals(samlId) || 
id.equals(samlId2)) {
-<a name="119" href="#119">119</a>                     <strong 
class="jxr_keyword">return</strong> elem;
-<a name="120" href="#120">120</a>                 }
-<a name="121" href="#121">121</a>             }
-<a name="122" href="#122">122</a>         }
-<a name="123" href="#123">123</a>         <strong 
class="jxr_keyword">return</strong> <strong class="jxr_keyword">null</strong>;
-<a name="124" href="#124">124</a>     }
-<a name="125" href="#125">125</a>     
-<a name="126" href="#126">126</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="127" href="#127">127</a> <em class="jxr_javadoccomment">     * Store 
a protection element for later retrieval. </em>
-<a name="128" href="#128">128</a> <em class="jxr_javadoccomment">     * @param 
element is the protection element to store</em>
-<a name="129" href="#129">129</a> <em class="jxr_javadoccomment">     */</em>
-<a name="130" href="#130">130</a>     <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
addProtectionElement(Element element) {
-<a name="131" href="#131">131</a>         <strong 
class="jxr_keyword">if</strong> (elementList == <strong 
class="jxr_keyword">null</strong>) {
-<a name="132" href="#132">132</a>             elementList = <strong 
class="jxr_keyword">new</strong> ArrayList&lt;Element&gt;();
-<a name="133" href="#133">133</a>         }
-<a name="134" href="#134">134</a>         elementList.add(element);
-<a name="135" href="#135">135</a>     }
-<a name="136" href="#136">136</a>     
-<a name="137" href="#137">137</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="138" href="#138">138</a> <em class="jxr_javadoccomment">     * Get a 
protection element for the given (wsu) Id.</em>
+<a name="96" href="#96">96</a>          
+<a name="97" href="#97">97</a>          <strong 
class="jxr_keyword">if</strong> (checkMultipleElements) {
+<a name="98" href="#98">98</a>              <strong 
class="jxr_keyword">for</strong> (Element elem : tokenList) {
+<a name="99" href="#99">99</a>                  <strong 
class="jxr_keyword">if</strong> (compareElementsById(element, elem)) {
+<a name="100" href="#100">100</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="101" href="#101">101</a>                         
WSSecurityException.INVALID_SECURITY_TOKEN, <span 
class="jxr_string">"duplicateError"</span>
+<a name="102" href="#102">102</a>                     );
+<a name="103" href="#103">103</a>                 }
+<a name="104" href="#104">104</a>             }
+<a name="105" href="#105">105</a>         }
+<a name="106" href="#106">106</a>         tokenList.add(element);
+<a name="107" href="#107">107</a>     }
+<a name="108" href="#108">108</a>     
+<a name="109" href="#109">109</a>     <strong 
class="jxr_keyword">private</strong> <strong 
class="jxr_keyword">boolean</strong> compareElementsById(Element firstElement, 
Element secondElement) {
+<a name="110" href="#110">110</a>         <strong 
class="jxr_keyword">if</strong> 
(firstElement.hasAttributeNS(WSConstants.WSU_NS, <span 
class="jxr_string">"Id"</span>)
+<a name="111" href="#111">111</a>             &amp;&amp; 
secondElement.hasAttributeNS(WSConstants.WSU_NS, <span 
class="jxr_string">"Id"</span>)) {
+<a name="112" href="#112">112</a>             String id = 
firstElement.getAttributeNS(WSConstants.WSU_NS, <span 
class="jxr_string">"Id"</span>);
+<a name="113" href="#113">113</a>             String id2 = 
secondElement.getAttributeNS(WSConstants.WSU_NS, <span 
class="jxr_string">"Id"</span>);
+<a name="114" href="#114">114</a>             <strong 
class="jxr_keyword">if</strong> (id.equals(id2)) {
+<a name="115" href="#115">115</a>                 <strong 
class="jxr_keyword">return</strong> <strong class="jxr_keyword">true</strong>;
+<a name="116" href="#116">116</a>             }
+<a name="117" href="#117">117</a>         }
+<a name="118" href="#118">118</a>         <strong 
class="jxr_keyword">if</strong> (firstElement.hasAttribute(<span 
class="jxr_string">"AssertionID"</span>)
+<a name="119" href="#119">119</a>             &amp;&amp; 
secondElement.hasAttribute(<span class="jxr_string">"AssertionID"</span>)) {
+<a name="120" href="#120">120</a>             String id = 
firstElement.getAttribute(<span class="jxr_string">"AssertionID"</span>);
+<a name="121" href="#121">121</a>             String id2 = 
secondElement.getAttribute(<span class="jxr_string">"AssertionID"</span>);
+<a name="122" href="#122">122</a>             <strong 
class="jxr_keyword">if</strong> (id.equals(id2)) {
+<a name="123" href="#123">123</a>                 <strong 
class="jxr_keyword">return</strong> <strong class="jxr_keyword">true</strong>;
+<a name="124" href="#124">124</a>             }
+<a name="125" href="#125">125</a>         }
+<a name="126" href="#126">126</a>         <strong 
class="jxr_keyword">if</strong> (firstElement.hasAttribute(<span 
class="jxr_string">"ID"</span>) &amp;&amp; secondElement.hasAttribute(<span 
class="jxr_string">"ID"</span>)) {
+<a name="127" href="#127">127</a>             String id = 
firstElement.getAttribute(<span class="jxr_string">"ID"</span>);
+<a name="128" href="#128">128</a>             String id2 = 
secondElement.getAttribute(<span class="jxr_string">"ID"</span>);
+<a name="129" href="#129">129</a>             <strong 
class="jxr_keyword">if</strong> (id.equals(id2)) {
+<a name="130" href="#130">130</a>                 <strong 
class="jxr_keyword">return</strong> <strong class="jxr_keyword">true</strong>;
+<a name="131" href="#131">131</a>             }
+<a name="132" href="#132">132</a>         }
+<a name="133" href="#133">133</a>         <strong 
class="jxr_keyword">return</strong> false;
+<a name="134" href="#134">134</a>     }
+<a name="135" href="#135">135</a>     
+<a name="136" href="#136">136</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="137" href="#137">137</a> <em class="jxr_javadoccomment">     * Get a 
token Element for the given Id. The Id can be either a wsu:Id or a </em>
+<a name="138" href="#138">138</a> <em class="jxr_javadoccomment">     * SAML 
AssertionID/ID. </em>
 <a name="139" href="#139">139</a> <em class="jxr_javadoccomment">     * @param 
uri is the (relative) uri of the id</em>
-<a name="140" href="#140">140</a> <em class="jxr_javadoccomment">     * 
@return the protection element or null if nothing found</em>
+<a name="140" href="#140">140</a> <em class="jxr_javadoccomment">     * 
@return the token element or null if nothing found</em>
 <a name="141" href="#141">141</a> <em class="jxr_javadoccomment">     */</em>
-<a name="142" href="#142">142</a>     <strong 
class="jxr_keyword">public</strong> Element getProtectionElement(String uri) {
+<a name="142" href="#142">142</a>     <strong 
class="jxr_keyword">public</strong> Element getTokenElement(String uri) {
 <a name="143" href="#143">143</a>         String id = uri;
 <a name="144" href="#144">144</a>         <strong 
class="jxr_keyword">if</strong> (id == <strong 
class="jxr_keyword">null</strong>) {
 <a name="145" href="#145">145</a>             <strong 
class="jxr_keyword">return</strong> <strong class="jxr_keyword">null</strong>;
 <a name="146" href="#146">146</a>         } <strong 
class="jxr_keyword">else</strong> <strong class="jxr_keyword">if</strong> 
(id.charAt(0) == '#') {
 <a name="147" href="#147">147</a>             id = id.substring(1);
 <a name="148" href="#148">148</a>         }
-<a name="149" href="#149">149</a>         <strong 
class="jxr_keyword">if</strong> (elementList != <strong 
class="jxr_keyword">null</strong>) {
-<a name="150" href="#150">150</a>             <strong 
class="jxr_keyword">for</strong> (Element element : elementList) {
-<a name="151" href="#151">151</a>                 <strong 
class="jxr_keyword">if</strong> (element != <strong 
class="jxr_keyword">null</strong>) {
-<a name="152" href="#152">152</a>                     String cId = 
element.getAttributeNS(WSConstants.WSU_NS, <span 
class="jxr_string">"Id"</span>);
-<a name="153" href="#153">153</a>                     <strong 
class="jxr_keyword">if</strong> (id.equals(cId)) {
-<a name="154" href="#154">154</a>                         <strong 
class="jxr_keyword">return</strong> element;
-<a name="155" href="#155">155</a>                     }
-<a name="156" href="#156">156</a>                 }
-<a name="157" href="#157">157</a>             }
-<a name="158" href="#158">158</a>         }
-<a name="159" href="#159">159</a>         <strong 
class="jxr_keyword">return</strong> <strong class="jxr_keyword">null</strong>;
-<a name="160" href="#160">160</a>     }
-<a name="161" href="#161">161</a>     
-<a name="162" href="#162">162</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="163" href="#163">163</a> <em class="jxr_javadoccomment">     * Store 
a WSSecurityEngineResult for later retrieval. </em>
-<a name="164" href="#164">164</a> <em class="jxr_javadoccomment">     * @param 
result is the WSSecurityEngineResult to store</em>
-<a name="165" href="#165">165</a> <em class="jxr_javadoccomment">     */</em>
-<a name="166" href="#166">166</a>     <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
addResult(<a 
href="../../../../org/apache/ws/security/WSSecurityEngineResult.html">WSSecurityEngineResult</a>
 result) {
-<a name="167" href="#167">167</a>         <strong 
class="jxr_keyword">if</strong> (resultsList == <strong 
class="jxr_keyword">null</strong>) {
-<a name="168" href="#168">168</a>             resultsList = <strong 
class="jxr_keyword">new</strong> ArrayList&lt;WSSecurityEngineResult&gt;();
-<a name="169" href="#169">169</a>         }
-<a name="170" href="#170">170</a>         resultsList.add(result);
-<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">     * Get a 
WSSecurityEngineResult for the given Id.</em>
-<a name="175" href="#175">175</a> <em class="jxr_javadoccomment">     * @param 
uri is the (relative) uri of the id</em>
-<a name="176" href="#176">176</a> <em class="jxr_javadoccomment">     * 
@return the WSSecurityEngineResult or null if nothing found</em>
-<a name="177" href="#177">177</a> <em class="jxr_javadoccomment">     */</em>
-<a name="178" href="#178">178</a>     <strong 
class="jxr_keyword">public</strong> <a 
href="../../../../org/apache/ws/security/WSSecurityEngineResult.html">WSSecurityEngineResult</a>
 getResult(String uri) {
-<a name="179" href="#179">179</a>         String id = uri;
-<a name="180" href="#180">180</a>         <strong 
class="jxr_keyword">if</strong> (id == <strong 
class="jxr_keyword">null</strong>) {
-<a name="181" href="#181">181</a>             <strong 
class="jxr_keyword">return</strong> <strong class="jxr_keyword">null</strong>;
-<a name="182" href="#182">182</a>         } <strong 
class="jxr_keyword">else</strong> <strong class="jxr_keyword">if</strong> 
(id.charAt(0) == '#') {
-<a name="183" href="#183">183</a>             id = id.substring(1);
-<a name="184" href="#184">184</a>         }
-<a name="185" href="#185">185</a>         <strong 
class="jxr_keyword">if</strong> (resultsList != <strong 
class="jxr_keyword">null</strong>) {
-<a name="186" href="#186">186</a>             <strong 
class="jxr_keyword">for</strong> (WSSecurityEngineResult result : resultsList) {
-<a name="187" href="#187">187</a>                 <strong 
class="jxr_keyword">if</strong> (result != <strong 
class="jxr_keyword">null</strong>) {
-<a name="188" href="#188">188</a>                     String cId = 
(String)result.get(WSSecurityEngineResult.TAG_ID);
-<a name="189" href="#189">189</a>                     <strong 
class="jxr_keyword">if</strong> (id.equals(cId)) {
-<a name="190" href="#190">190</a>                         <strong 
class="jxr_keyword">return</strong> result;
-<a name="191" href="#191">191</a>                     }
-<a name="192" href="#192">192</a>                 }
-<a name="193" href="#193">193</a>             }
+<a name="149" href="#149">149</a>         <strong 
class="jxr_keyword">if</strong> (tokenList != <strong 
class="jxr_keyword">null</strong>) {
+<a name="150" href="#150">150</a>             <strong 
class="jxr_keyword">for</strong> (Element elem : tokenList) {
+<a name="151" href="#151">151</a>                 String cId = 
elem.getAttributeNS(WSConstants.WSU_NS, <span class="jxr_string">"Id"</span>);
+<a name="152" href="#152">152</a>                 String samlId = 
elem.getAttribute(<span class="jxr_string">"AssertionID"</span>);
+<a name="153" href="#153">153</a>                 String samlId2 = 
elem.getAttribute(<span class="jxr_string">"ID"</span>);
+<a name="154" href="#154">154</a>                 <strong 
class="jxr_keyword">if</strong> ((elem.hasAttributeNS(WSConstants.WSU_NS, <span 
class="jxr_string">"Id"</span>) &amp;&amp; id.equals(cId)) 
+<a name="155" href="#155">155</a>                     || 
(elem.hasAttribute(<span class="jxr_string">"AssertionID"</span>) &amp;&amp; 
id.equals(samlId))
+<a name="156" href="#156">156</a>                     || 
(elem.hasAttribute(<span class="jxr_string">"ID"</span>) &amp;&amp; 
id.equals(samlId2))) {
+<a name="157" href="#157">157</a>                     <strong 
class="jxr_keyword">return</strong> elem;
+<a name="158" href="#158">158</a>                 }
+<a name="159" href="#159">159</a>             }
+<a name="160" href="#160">160</a>         }
+<a name="161" href="#161">161</a>         <strong 
class="jxr_keyword">return</strong> <strong class="jxr_keyword">null</strong>;
+<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">     * Store 
a protection element for later retrieval. This is only used for the </em>
+<a name="166" href="#166">166</a> <em class="jxr_javadoccomment">     * 
creation/outbound case.</em>
+<a name="167" href="#167">167</a> <em class="jxr_javadoccomment">     * @param 
element is the protection element to store</em>
+<a name="168" href="#168">168</a> <em class="jxr_javadoccomment">     * 
@deprecated</em>
+<a name="169" href="#169">169</a> <em class="jxr_javadoccomment">     */</em>
+<a name="170" href="#170">170</a>     <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
addProtectionElement(Element element) {
+<a name="171" href="#171">171</a>         <strong 
class="jxr_keyword">if</strong> (tokenList == <strong 
class="jxr_keyword">null</strong>) {
+<a name="172" href="#172">172</a>             tokenList = <strong 
class="jxr_keyword">new</strong> ArrayList&lt;Element&gt;();
+<a name="173" href="#173">173</a>         }
+<a name="174" href="#174">174</a>         tokenList.add(element);
+<a name="175" href="#175">175</a>     }
+<a name="176" href="#176">176</a>     
+<a name="177" href="#177">177</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="178" href="#178">178</a> <em class="jxr_javadoccomment">     * Get a 
protection element for the given (wsu/SAML) Id.</em>
+<a name="179" href="#179">179</a> <em class="jxr_javadoccomment">     * @param 
uri is the (relative) uri of the id</em>
+<a name="180" href="#180">180</a> <em class="jxr_javadoccomment">     * 
@return the protection element or null if nothing found</em>
+<a name="181" href="#181">181</a> <em class="jxr_javadoccomment">     * 
@deprecated</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> Element getProtectionElement(String uri) {
+<a name="184" href="#184">184</a>         <strong 
class="jxr_keyword">return</strong> getTokenElement(uri); 
+<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">     * Store 
a WSSecurityEngineResult for later retrieval. </em>
+<a name="189" href="#189">189</a> <em class="jxr_javadoccomment">     * @param 
result is the WSSecurityEngineResult to store</em>
+<a name="190" href="#190">190</a> <em class="jxr_javadoccomment">     */</em>
+<a name="191" href="#191">191</a>     <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
addResult(<a 
href="../../../../org/apache/ws/security/WSSecurityEngineResult.html">WSSecurityEngineResult</a>
 result) {
+<a name="192" href="#192">192</a>         <strong 
class="jxr_keyword">if</strong> (resultsList == <strong 
class="jxr_keyword">null</strong>) {
+<a name="193" href="#193">193</a>             resultsList = <strong 
class="jxr_keyword">new</strong> ArrayList&lt;WSSecurityEngineResult&gt;();
 <a name="194" href="#194">194</a>         }
-<a name="195" href="#195">195</a>         <strong 
class="jxr_keyword">return</strong> <strong class="jxr_keyword">null</strong>;
+<a name="195" href="#195">195</a>         resultsList.add(result);
 <a name="196" href="#196">196</a>     }
-<a name="197" href="#197">197</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">     * 
@return the signature crypto class used to process</em>
-<a name="200" href="#200">200</a> <em class="jxr_javadoccomment">     *        
 the signature/verify</em>
-<a name="201" href="#201">201</a> <em class="jxr_javadoccomment">     */</em>
-<a name="202" href="#202">202</a>     <strong 
class="jxr_keyword">public</strong> <a 
href="../../../../org/apache/ws/security/components/crypto/Crypto.html">Crypto</a>
 getCrypto() {
-<a name="203" href="#203">203</a>         <strong 
class="jxr_keyword">return</strong> crypto;
-<a name="204" href="#204">204</a>     }
-<a name="205" href="#205">205</a> 
-<a name="206" href="#206">206</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="207" href="#207">207</a> <em class="jxr_javadoccomment">     * 
@return the document</em>
-<a name="208" href="#208">208</a> <em class="jxr_javadoccomment">     */</em>
-<a name="209" href="#209">209</a>     <strong 
class="jxr_keyword">public</strong> Document getDocument() {
-<a name="210" href="#210">210</a>         <strong 
class="jxr_keyword">return</strong> doc;
-<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">     * @param 
crypto is the signature crypto class used to</em>
-<a name="215" href="#215">215</a> <em class="jxr_javadoccomment">     *        
       process signature/verify</em>
-<a name="216" href="#216">216</a> <em class="jxr_javadoccomment">     */</em>
-<a name="217" href="#217">217</a>     <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
setCrypto(<a 
href="../../../../org/apache/ws/security/components/crypto/Crypto.html">Crypto</a>
 crypto) {
-<a name="218" href="#218">218</a>         <strong 
class="jxr_keyword">this</strong>.crypto = crypto;
-<a name="219" href="#219">219</a>     }
-<a name="220" href="#220">220</a>     
-<a name="221" href="#221">221</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="222" href="#222">222</a> <em class="jxr_javadoccomment">     * @param 
callbackLookup The CallbackLookup object to retrieve elements</em>
-<a name="223" href="#223">223</a> <em class="jxr_javadoccomment">     */</em>
-<a name="224" href="#224">224</a>     <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
setCallbackLookup(<a 
href="../../../../org/apache/ws/security/message/CallbackLookup.html">CallbackLookup</a>
 callbackLookup) {
-<a name="225" href="#225">225</a>         <strong 
class="jxr_keyword">this</strong>.callbackLookup = callbackLookup;
-<a name="226" href="#226">226</a>     }
-<a name="227" href="#227">227</a>     
-<a name="228" href="#228">228</a>     <em class="jxr_javadoccomment">/**</em>
-<a name="229" href="#229">229</a> <em class="jxr_javadoccomment">     * 
@return the CallbackLookup object to retrieve elements</em>
-<a name="230" href="#230">230</a> <em class="jxr_javadoccomment">     */</em>
-<a name="231" href="#231">231</a>     <strong 
class="jxr_keyword">public</strong> <a 
href="../../../../org/apache/ws/security/message/CallbackLookup.html">CallbackLookup</a>
 getCallbackLookup() {
-<a name="232" href="#232">232</a>         <strong 
class="jxr_keyword">return</strong> callbackLookup;
-<a name="233" href="#233">233</a>     }
-<a name="234" href="#234">234</a> 
-<a name="235" href="#235">235</a> }
+<a name="199" href="#199">199</a> <em class="jxr_javadoccomment">     * Get a 
WSSecurityEngineResult for the given Id.</em>
+<a name="200" href="#200">200</a> <em class="jxr_javadoccomment">     * @param 
uri is the (relative) uri of the id</em>
+<a name="201" href="#201">201</a> <em class="jxr_javadoccomment">     * 
@return the WSSecurityEngineResult or null if nothing found</em>
+<a name="202" href="#202">202</a> <em class="jxr_javadoccomment">     */</em>
+<a name="203" href="#203">203</a>     <strong 
class="jxr_keyword">public</strong> <a 
href="../../../../org/apache/ws/security/WSSecurityEngineResult.html">WSSecurityEngineResult</a>
 getResult(String uri) {
+<a name="204" href="#204">204</a>         String id = uri;
+<a name="205" href="#205">205</a>         <strong 
class="jxr_keyword">if</strong> (id == <strong 
class="jxr_keyword">null</strong>) {
+<a name="206" href="#206">206</a>             <strong 
class="jxr_keyword">return</strong> <strong class="jxr_keyword">null</strong>;
+<a name="207" href="#207">207</a>         } <strong 
class="jxr_keyword">else</strong> <strong class="jxr_keyword">if</strong> 
(id.charAt(0) == '#') {
+<a name="208" href="#208">208</a>             id = id.substring(1);
+<a name="209" href="#209">209</a>         }
+<a name="210" href="#210">210</a>         <strong 
class="jxr_keyword">if</strong> (resultsList != <strong 
class="jxr_keyword">null</strong>) {
+<a name="211" href="#211">211</a>             <strong 
class="jxr_keyword">for</strong> (WSSecurityEngineResult result : resultsList) {
+<a name="212" href="#212">212</a>                 <strong 
class="jxr_keyword">if</strong> (result != <strong 
class="jxr_keyword">null</strong>) {
+<a name="213" href="#213">213</a>                     String cId = 
(String)result.get(WSSecurityEngineResult.TAG_ID);
+<a name="214" href="#214">214</a>                     <strong 
class="jxr_keyword">if</strong> (id.equals(cId)) {
+<a name="215" href="#215">215</a>                         <strong 
class="jxr_keyword">return</strong> result;
+<a name="216" href="#216">216</a>                     }
+<a name="217" href="#217">217</a>                 }
+<a name="218" href="#218">218</a>             }
+<a name="219" href="#219">219</a>         }
+<a name="220" href="#220">220</a>         <strong 
class="jxr_keyword">return</strong> <strong class="jxr_keyword">null</strong>;
+<a name="221" href="#221">221</a>     }
+<a name="222" href="#222">222</a> 
+<a name="223" href="#223">223</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="224" href="#224">224</a> <em class="jxr_javadoccomment">     * 
@return the signature crypto class used to process</em>
+<a name="225" href="#225">225</a> <em class="jxr_javadoccomment">     *        
 the signature/verify</em>
+<a name="226" href="#226">226</a> <em class="jxr_javadoccomment">     */</em>
+<a name="227" href="#227">227</a>     <strong 
class="jxr_keyword">public</strong> <a 
href="../../../../org/apache/ws/security/components/crypto/Crypto.html">Crypto</a>
 getCrypto() {
+<a name="228" href="#228">228</a>         <strong 
class="jxr_keyword">return</strong> crypto;
+<a name="229" href="#229">229</a>     }
+<a name="230" href="#230">230</a> 
+<a name="231" href="#231">231</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="232" href="#232">232</a> <em class="jxr_javadoccomment">     * 
@return the document</em>
+<a name="233" href="#233">233</a> <em class="jxr_javadoccomment">     */</em>
+<a name="234" href="#234">234</a>     <strong 
class="jxr_keyword">public</strong> Document getDocument() {
+<a name="235" href="#235">235</a>         <strong 
class="jxr_keyword">return</strong> doc;
+<a name="236" href="#236">236</a>     }
+<a name="237" href="#237">237</a> 
+<a name="238" href="#238">238</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="239" href="#239">239</a> <em class="jxr_javadoccomment">     * @param 
crypto is the signature crypto class used to</em>
+<a name="240" href="#240">240</a> <em class="jxr_javadoccomment">     *        
       process signature/verify</em>
+<a name="241" href="#241">241</a> <em class="jxr_javadoccomment">     */</em>
+<a name="242" href="#242">242</a>     <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
setCrypto(<a 
href="../../../../org/apache/ws/security/components/crypto/Crypto.html">Crypto</a>
 crypto) {
+<a name="243" href="#243">243</a>         <strong 
class="jxr_keyword">this</strong>.crypto = crypto;
+<a name="244" href="#244">244</a>     }
+<a name="245" href="#245">245</a>     
+<a name="246" href="#246">246</a>     <em class="jxr_javadoccomment">/**</em>
+<a name="247" href="#247">247</a> <em class="jxr_javadoccomment">     * @param 
callbackLookup The CallbackLookup object to retrieve elements</em>
+<a name="248" href="#248">248</a> <em class="jxr_javadoccomment">     */</em>
+<a name="249" href="#249">249</a>     <strong 
class="jxr_keyword">public</strong> <strong class="jxr_keyword">void</strong> 
setCallbackLookup(<a 
href="../../../../org/apache/ws/security/message/CallbackLookup.html">CallbackLookup</a>
 callbackLookup) {
+<a name="250" href="#250">250</a>         <strong 
class="jxr_keyword">this</strong>.callbackLookup = callbackLookup;
+<a name="251" href="#251">251</a>     }
+<a name="252" href="#252">252</a>     
+<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 CallbackLookup object to retrieve elements</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> <a 
href="../../../../org/apache/ws/security/message/CallbackLookup.html">CallbackLookup</a>
 getCallbackLookup() {
+<a name="257" href="#257">257</a>         <strong 
class="jxr_keyword">return</strong> callbackLookup;
+<a name="258" href="#258">258</a>     }
+<a name="259" href="#259">259</a> 
+<a name="260" href="#260">260</a> }
 </pre>
 <hr/><div id="footer">This page was automatically generated by <a 
href="http://maven.apache.org/";>Maven</a></div></body>
 </html>


Reply via email to