Marcus Clemens wrote:

If you sent me a link to your cv I cannot open it


Please send a word document

regards

Marcus Clemens
Senior Consultant

I don't know about you guys, but I think this one is the funniest. Senior Consultant have not seen a code. Anybody got a clue bat? :-)


Vadim


Vector Resourcing Ltd
Tel: 01892 771447
Fax: 01892 777992

Castle Farm Barn, Hartfield, East Sussex, TN7 4JD


-----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 26 January 2005 19:54 To: [EMAIL PROTECTED] Subject: svn commit: r126535 - in cocoon/trunk/src/blocks/axis/java/org/apache/cocoon: components/axis components/axis/providers reading webservices/system

Author: cziegeler
Date: Wed Jan 26 11:54:26 2005
New Revision: 126535

URL: http://svn.apache.org/viewcvs?view=rev&rev=126535
Log:
Format code
Modified:
cocoon/trunk/src/blocks/axis/java/org/apache/cocoon/components/axis/SoapServ
erImpl.java
cocoon/trunk/src/blocks/axis/java/org/apache/cocoon/components/axis/provider
s/AvalonProvider.java
cocoon/trunk/src/blocks/axis/java/org/apache/cocoon/reading/AxisRPCReader.ja
va
cocoon/trunk/src/blocks/axis/java/org/apache/cocoon/webservices/system/Syste
m.java


Modified:
cocoon/trunk/src/blocks/axis/java/org/apache/cocoon/components/axis/SoapServ
erImpl.java
Url:
http://svn.apache.org/viewcvs/cocoon/trunk/src/blocks/axis/java/org/apache/c
ocoon/components/axis/SoapServerImpl.java?view=diff&rev=126535&p1=cocoon/tru
nk/src/blocks/axis/java/org/apache/cocoon/components/axis/SoapServerImpl.jav
a&r1=126534&p2=cocoon/trunk/src/blocks/axis/java/org/apache/cocoon/component
s/axis/SoapServerImpl.java&r2=126535
============================================================================
==
---
cocoon/trunk/src/blocks/axis/java/org/apache/cocoon/components/axis/SoapServ
erImpl.java     (original)
+++
cocoon/trunk/src/blocks/axis/java/org/apache/cocoon/components/axis/SoapServ
erImpl.java     Wed Jan 26 11:54:26 2005
@@ -1,5 +1,5 @@
 /*
- * Copyright 1999-2004 The Apache Software Foundation.
+ * Copyright 1999-2005 The Apache Software Foundation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -91,8 +91,8 @@
  */
 public class SoapServerImpl extends AbstractLogEnabled
     implements SoapServer, Serviceable, Configurable, Contextualizable,
Initializable,
-               Startable, ThreadSafe
-{
+               Startable, ThreadSafe {
+
     /**
      * Constant describing the default location of the server configuration
file
      */
@@ -124,37 +124,29 @@
     private WSDDDocument[] m_descriptors;

     // context reference
-    private Context m_context;
+    private Context context;

     // serivce manager reference
-    private ServiceManager m_manager;
+    private ServiceManager manager;

-    /**
-     * Contextualize this Reader.
-     *
-     * @param context a <code>Context</code> instance
-     * @exception ContextException if an error occurs
+    /* (non-Javadoc)
+     * @see
org.apache.avalon.framework.context.Contextualizable#contextualize(org.apach
e.avalon.framework.context.Context)
      */
     public void contextualize(final Context context)
-        throws ContextException
-    {
-        m_context = context;
+    throws ContextException {
+        this.context = context;
     }

-    /**
-     * Compose this server
-     *
-     * @param manager a <code>ServiceManager</code> value
-     * @exception ServiceException if an error occurs
+    /* (non-Javadoc)
+     * @see
org.apache.avalon.framework.service.Serviceable#service(org.apache.avalon.fr
amework.service.ServiceManager)
      */
     public void service(ServiceManager manager)
-        throws ServiceException
-    {
-        m_manager = manager;
+    throws ServiceException {
+        this.manager = manager;
     }

     /**
-     * Configures this reader.
+     * Configures this server.
      *
      * <p>
      *  Sets the following optional configuration settings:

<snip/>

Reply via email to