Author: buildbot
Date: Mon Jan 28 17:47:56 2013
New Revision: 848324
Log:
Production update by buildbot for cxf
Modified:
websites/production/cxf/content/cache/docs.pageCache
websites/production/cxf/content/docs/invokers.html
Modified: websites/production/cxf/content/cache/docs.pageCache
==============================================================================
Binary files - no diff available.
Modified: websites/production/cxf/content/docs/invokers.html
==============================================================================
--- websites/production/cxf/content/docs/invokers.html (original)
+++ websites/production/cxf/content/docs/invokers.html Mon Jan 28 17:47:56 2013
@@ -195,17 +195,16 @@ ejbService.setInvoker(<span class="code-
<p>If you are using an EJB3 container you can use the following invoker, which
is just a simplified version of the above:</p>
<div class="code panel" style="border-width: 1px;"><div class="codeContent
panelContent">
<pre class="code-java">
- <span class="code-keyword">public</span> class EJB3Invoker <span
class="code-keyword">extends</span> AbstractInvoker {
- <span class="code-keyword">private</span> <span
class="code-object">Object</span> ejb;
+<span class="code-keyword">public</span> class EJB3Invoker <span
class="code-keyword">extends</span> AbstractInvoker {
+ <span class="code-keyword">private</span> <span
class="code-object">Object</span> ejb;
- <span class="code-keyword">public</span> EJB3Invoker(<span
class="code-object">String</span> jndiName) <span
class="code-keyword">throws</span> NamingException {
- ejb = <span class="code-keyword">new</span>
InitialContext().lookup(jndiName);
- }
-
- <span class="code-keyword">public</span> <span
class="code-object">Object</span> getServiceObject(<span
class="code-keyword">final</span> Exchange context)
- {
- <span class="code-keyword">return</span> ejb;
- }
+ <span class="code-keyword">public</span> EJB3Invoker(<span
class="code-object">String</span> jndiName) <span
class="code-keyword">throws</span> NamingException {
+ ejb = <span class="code-keyword">new</span>
InitialContext().lookup(jndiName);
+ }
+
+ <span class="code-keyword">public</span> <span
class="code-object">Object</span> getServiceObject(<span
class="code-keyword">final</span> Exchange context) {
+ <span class="code-keyword">return</span> ejb;
+ }
}
</pre>
</div></div>