You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by di...@apache.org on 2006/05/04 16:52:51 UTC

svn commit: r399719 [2/3] - in /webservices/axis2/trunk/java/modules: addressing/src/org/apache/axis2/handlers/addressing/ addressing/test/org/apache/axis2/handlers/addressing/ codegen/src/org/apache/axis2/wsdl/codegen/ codegen/src/org/apache/axis2/wsd...

Modified: webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/mail/MailClient.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/mail/MailClient.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/mail/MailClient.java (original)
+++ webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/mail/MailClient.java Thu May  4 07:52:32 2006
@@ -20,7 +20,7 @@
     public static final int SHOW_MESSAGES = 1;
     public static final int CLEAR_MESSAGES = 2;
     public static final int SHOW_AND_CLEAR = SHOW_MESSAGES + CLEAR_MESSAGES;
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(MailClient.class);
     protected PasswordAuthentication authentication;
     protected String from;
     protected Session session;

Modified: webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/mail/MailWorker.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/mail/MailWorker.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/mail/MailWorker.java (original)
+++ webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/mail/MailWorker.java Thu May  4 07:52:32 2006
@@ -45,7 +45,7 @@
 import java.io.ByteArrayInputStream;
 
 public class MailWorker implements Runnable {
-    protected static Log log = LogFactory.getLog(MailWorker.class.getName());
+	private static final Log log = LogFactory.getLog(MailWorker.class);
     private ConfigurationContext configContext = null;
     private MimeMessage mimeMessage;
 

Modified: webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/mail/SimpleMailListener.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/mail/SimpleMailListener.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/mail/SimpleMailListener.java (original)
+++ webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/mail/SimpleMailListener.java Thu May  4 07:52:32 2006
@@ -50,7 +50,7 @@
  *
  */
 public class SimpleMailListener implements Runnable, TransportListener {
-    protected static Log log = LogFactory.getLog(SimpleMailListener.class.getName());
+	private static final Log log = LogFactory.getLog(SimpleMailListener.class);
 
     // Are we doing threads?
     private static boolean doThreads = true;

Modified: webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/mail/server/MailServer.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/mail/server/MailServer.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/mail/server/MailServer.java (original)
+++ webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/mail/server/MailServer.java Thu May  4 07:52:32 2006
@@ -8,8 +8,7 @@
 import org.apache.commons.logging.LogFactory;
 
 public class MailServer {
-    protected static Log log =
-            LogFactory.getLog(SimpleMailListener.class.getName());
+	private static final Log log = LogFactory.getLog(MailServer.class);
     Storage st = null;
     public ConfigurationContext configurationContext = null;
     private POP3Server pop3Server;

Modified: webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/mail/server/MailSorter.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/mail/server/MailSorter.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/mail/server/MailSorter.java (original)
+++ webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/mail/server/MailSorter.java Thu May  4 07:52:32 2006
@@ -33,7 +33,7 @@
  * and the receive method is called.
  */
 public class MailSorter {
-    protected static Log log = LogFactory.getLog(MailSorter.class.getName());
+	private static final Log log = LogFactory.getLog(MailSorter.class);
     Storage st = null;
     private ArrayList sUsers = new ArrayList();
 

Modified: webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/mail/server/POP3Server.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/mail/server/POP3Server.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/mail/server/POP3Server.java (original)
+++ webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/mail/server/POP3Server.java Thu May  4 07:52:32 2006
@@ -9,7 +9,7 @@
 import java.net.Socket;
 
 public class POP3Server extends Thread {
-    protected static Log log = LogFactory.getLog(POP3Server.class.getName());
+	private static final Log log = LogFactory.getLog(POP3Server.class);
     private Storage st = null;
     private ServerSocket serverSocket;
 

Modified: webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/mail/server/POP3Worker.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/mail/server/POP3Worker.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/mail/server/POP3Worker.java (original)
+++ webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/mail/server/POP3Worker.java Thu May  4 07:52:32 2006
@@ -32,7 +32,7 @@
 import java.util.StringTokenizer;
 
 public class POP3Worker extends Thread {
-    protected static Log log = LogFactory.getLog(POP3Server.class.getName());
+	private static final Log log = LogFactory.getLog(POP3Worker.class);
     boolean doneProcess = false;
     int numDeleted = 0;    // This is a small hack to get the deleting working with the ArrayList. To keep it simple.
     ArrayList messages = new ArrayList();

Modified: webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/mail/server/SMTPServer.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/mail/server/SMTPServer.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/mail/server/SMTPServer.java (original)
+++ webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/mail/server/SMTPServer.java Thu May  4 07:52:32 2006
@@ -27,7 +27,7 @@
 import java.net.Socket;
 
 public class SMTPServer extends Thread {
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(SMTPServer.class);
     private boolean actAsMailet = false;
     private boolean running = false;
     private ConfigurationContext configurationContext;

Modified: webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/mail/server/SMTPWorker.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/mail/server/SMTPWorker.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/mail/server/SMTPWorker.java (original)
+++ webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/mail/server/SMTPWorker.java Thu May  4 07:52:32 2006
@@ -45,7 +45,7 @@
     boolean runThread = true;
     private ArrayList receivers = new ArrayList();
     private MimeMessage mail = null;
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(SMTPWorker.class);
     private boolean dataWriting = false;
     private ConfigurationContext configurationContext = null;
     private boolean bodyData = false;

Modified: webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/tcp/TCPServer.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/tcp/TCPServer.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/tcp/TCPServer.java (original)
+++ webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/tcp/TCPServer.java Thu May  4 07:52:32 2006
@@ -45,7 +45,7 @@
 public class TCPServer implements Runnable, TransportListener {
     private int port = 8000;
     private boolean started = false;
-    protected Log log = LogFactory.getLog(SimpleHTTPServer.class.getName());
+	private static final Log log = LogFactory.getLog(TCPServer.class);
     private ConfigurationContext configContext;
     private ServerSocket serversocket;
     private String hostAddress = null;

Modified: webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/tcp/TCPWorker.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/tcp/TCPWorker.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/tcp/TCPWorker.java (original)
+++ webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/transport/tcp/TCPWorker.java Thu May  4 07:52:32 2006
@@ -46,7 +46,7 @@
  * This Class is the work hoarse of the TCP request, this process the incomming SOAP Message.
  */
 public class TCPWorker implements Runnable {
-    protected Log log = LogFactory.getLog(getClass().getName());
+	private static final Log log = LogFactory.getLog(TCPWorker.class);
     private ConfigurationContext configurationContext;
     private Socket socket;
 

Modified: webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/util/OptionsParser.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/util/OptionsParser.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/util/OptionsParser.java (original)
+++ webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/util/OptionsParser.java Thu May  4 07:52:32 2006
@@ -30,7 +30,7 @@
 import java.util.Vector;
 
 public class OptionsParser {
-    protected static Log log = LogFactory.getLog(OptionsParser.class.getName());
+	private static final Log log = LogFactory.getLog(OptionsParser.class);
     String args[] = null;
     Vector usedArgs = null;
 

Modified: webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/util/threadpool/ThreadPool.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/util/threadpool/ThreadPool.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/util/threadpool/ThreadPool.java (original)
+++ webservices/axis2/trunk/java/modules/core/src/org/apache/axis2/util/threadpool/ThreadPool.java Thu May  4 07:52:32 2006
@@ -33,7 +33,7 @@
  * in the thread pool.
  */
 public class ThreadPool implements ThreadFactory {
-    protected static Log log = LogFactory.getLog(ThreadPool.class.getName());
+	private static final Log log = LogFactory.getLog(ThreadPool.class);
     protected static long SLEEP_INTERVAL = 1000;
     private static boolean shutDown;
     protected ThreadPoolExecutor executor;

Modified: webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/ModuleHandler1.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/ModuleHandler1.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/ModuleHandler1.java (original)
+++ webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/ModuleHandler1.java Thu May  4 07:52:32 2006
@@ -26,7 +26,7 @@
 
 public class ModuleHandler1  extends AbstractHandler implements Handler {
     private static final long serialVersionUID = 8180024686236178934L;
-	private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(ModuleHandler1 .class);
     private String message;
     private QName name;
     public ModuleHandler1() {

Modified: webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/deployment/SpeakingHandler.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/deployment/SpeakingHandler.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/deployment/SpeakingHandler.java (original)
+++ webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/deployment/SpeakingHandler.java Thu May  4 07:52:32 2006
@@ -29,7 +29,7 @@
 	
     private static final long serialVersionUID = -7115915636830140164L;
     
-	private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(SpeakingHandler.class);
     private String message;
     private QName name;
 

Modified: webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/deployment/SystemPhasesremovedTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/deployment/SystemPhasesremovedTest.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/deployment/SystemPhasesremovedTest.java (original)
+++ webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/deployment/SystemPhasesremovedTest.java Thu May  4 07:52:32 2006
@@ -26,7 +26,7 @@
 public class SystemPhasesremovedTest extends TestCase {
 
     AxisConfiguration er;
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(SystemPhasesremovedTest.class);
 
     public void testPhaseOrderchage() {
         try {

Modified: webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/description/SpeakingHandler.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/description/SpeakingHandler.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/description/SpeakingHandler.java (original)
+++ webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/description/SpeakingHandler.java Thu May  4 07:52:32 2006
@@ -27,7 +27,7 @@
 
 public class SpeakingHandler extends AbstractHandler implements Handler {
     private static final long serialVersionUID = 1981398896004153611L;
-	private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(SpeakingHandler.class);
     private String message;
     private QName name;
 

Modified: webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/description/SpeakingHandler1.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/description/SpeakingHandler1.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/description/SpeakingHandler1.java (original)
+++ webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/description/SpeakingHandler1.java Thu May  4 07:52:32 2006
@@ -27,7 +27,7 @@
 
 public class SpeakingHandler1 extends AbstractHandler implements Handler {
     private static final long serialVersionUID = -9147014780463234096L;
-	private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(SpeakingHandler1.class);
     private String message;
     private QName name;
 

Modified: webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/description/SpeakingProvider.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/description/SpeakingProvider.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/description/SpeakingProvider.java (original)
+++ webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/description/SpeakingProvider.java Thu May  4 07:52:32 2006
@@ -23,7 +23,7 @@
 import org.apache.commons.logging.LogFactory;
 
 public class SpeakingProvider implements MessageReceiver {
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(SpeakingProvider.class);
 
     public SpeakingProvider() {
     }

Modified: webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/handlers/Handler2.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/handlers/Handler2.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/handlers/Handler2.java (original)
+++ webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/handlers/Handler2.java Thu May  4 07:52:32 2006
@@ -26,7 +26,7 @@
 
 public class Handler2 extends AbstractHandler implements Handler {
     private static final long serialVersionUID = 972538148763607921L;
-	private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(Handler2.class);
     private String message;
     private QName name;
     public Handler2() {

Modified: webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/phaserule/InvalidPhaseRuleTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/phaserule/InvalidPhaseRuleTest.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/phaserule/InvalidPhaseRuleTest.java (original)
+++ webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/phaserule/InvalidPhaseRuleTest.java Thu May  4 07:52:32 2006
@@ -32,7 +32,7 @@
 
     InvalidPhaseRuleTest phaserul;
     AxisConfiguration axisSytem;
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(InvalidPhaseRuleTest.class);
 
     public InvalidPhaseRuleTest(String testName) {
         super(testName);

Modified: webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/phaserule/PhaseRuleHandlers.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/phaserule/PhaseRuleHandlers.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/phaserule/PhaseRuleHandlers.java (original)
+++ webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/phaserule/PhaseRuleHandlers.java Thu May  4 07:52:32 2006
@@ -30,7 +30,7 @@
 
     private static final long serialVersionUID = 2941436920684525811L;
     
-	private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(PhaseRuleHandlers.class);
     private QName name;
   
     public void invoke(MessageContext msgContext) throws AxisFault {

Modified: webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/registry/Handler3.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/registry/Handler3.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/registry/Handler3.java (original)
+++ webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/registry/Handler3.java Thu May  4 07:52:32 2006
@@ -27,7 +27,7 @@
 
 public class Handler3  extends AbstractHandler implements Handler {
     private static final long serialVersionUID = 5364844101018794296L;
-	private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(Handler3 .class);
     private String message;
     private QName name;
     public Handler3() {

Modified: webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/sample/handlers/LoggingHandler.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/sample/handlers/LoggingHandler.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/sample/handlers/LoggingHandler.java (original)
+++ webservices/axis2/trunk/java/modules/core/test/org/apache/axis2/sample/handlers/LoggingHandler.java Thu May  4 07:52:32 2006
@@ -26,7 +26,7 @@
 
     private static final long serialVersionUID = 7656851260678664746L;
     
-	private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(LoggingHandler.class);
 
     public void invoke(MessageContext msgContext) throws AxisFault {
         log.info("Incoming message From " + msgContext.getTo().getAddress());

Modified: webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/ESRound2InteropTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/ESRound2InteropTest.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/ESRound2InteropTest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/ESRound2InteropTest.java Thu May  4 07:52:32 2006
@@ -82,7 +82,7 @@
     SunClientUtil util;
     SunClient client = new SunClient();
 
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(ESRound2InteropTest.class);
     
     /**
      * Round2

Modified: webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/GSRound2InteropTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/GSRound2InteropTest.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/GSRound2InteropTest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/GSRound2InteropTest.java Thu May  4 07:52:32 2006
@@ -67,7 +67,7 @@
     SunClientUtil util;
     SunClient client = new SunClient();
 
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(GSRound2InteropTest.class);
     
     /**
      * Round2

Modified: webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/KSRoun2InteropTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/KSRoun2InteropTest.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/KSRoun2InteropTest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/KSRoun2InteropTest.java Thu May  4 07:52:32 2006
@@ -65,7 +65,7 @@
     SunClientUtil util;
     SunClient client = new SunClient();
 
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(KSRoun2InteropTest.class);
     
     /**
      * Round2

Modified: webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/MSRemRound2InteropTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/MSRemRound2InteropTest.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/MSRemRound2InteropTest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/MSRemRound2InteropTest.java Thu May  4 07:52:32 2006
@@ -75,7 +75,7 @@
     SunClientUtil util;
     SunClient client = new SunClient();
     
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(MSRemRound2InteropTest.class);
 
     /**
      * Round2

Modified: webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/MSaxmsRound2InteropTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/MSaxmsRound2InteropTest.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/MSaxmsRound2InteropTest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/MSaxmsRound2InteropTest.java Thu May  4 07:52:32 2006
@@ -73,7 +73,7 @@
     SunClientUtil util;
     SunClient client = new SunClient();
     
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(MSaxmsRound2InteropTest.class);
 
     /**
      * Round2

Modified: webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/MStk3Round2InteropTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/MStk3Round2InteropTest.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/MStk3Round2InteropTest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/MStk3Round2InteropTest.java Thu May  4 07:52:32 2006
@@ -81,7 +81,7 @@
     SunClientUtil util;
     SunClient client = new SunClient();
     
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(MStk3Round2InteropTest.class);
 
     /**
      * Round2

Modified: webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/S4rRound2InteropTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/S4rRound2InteropTest.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/S4rRound2InteropTest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/S4rRound2InteropTest.java Thu May  4 07:52:32 2006
@@ -68,7 +68,7 @@
     SunClientUtil util;
     SunClient client = new SunClient();
 
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(S4rRound2InteropTest.class);
     
     /**
      * Round2

Modified: webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/S4s4c2Round2InteropTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/S4s4c2Round2InteropTest.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/S4s4c2Round2InteropTest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/S4s4c2Round2InteropTest.java Thu May  4 07:52:32 2006
@@ -96,7 +96,7 @@
     SunClientUtil util;
     SunClient client = new SunClient();
     
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(S4s4c2Round2InteropTest.class);
 
     /**
      * Round2

Modified: webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/S4s4cRound2InteropTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/S4s4cRound2InteropTest.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/S4s4cRound2InteropTest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/S4s4cRound2InteropTest.java Thu May  4 07:52:32 2006
@@ -71,7 +71,7 @@
     SunClientUtil util;
     SunClient client = new SunClient();
     
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(S4s4cRound2InteropTest.class);
 
     /**
      * Round2

Modified: webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/SPJRound2InteropTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/SPJRound2InteropTest.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/SPJRound2InteropTest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/SPJRound2InteropTest.java Thu May  4 07:52:32 2006
@@ -76,7 +76,7 @@
     SunClientUtil util;
     SunClient client = new SunClient();
     
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(SPJRound2InteropTest.class);
 
     /**
      * Round2

Modified: webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/SunRound2InteropTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/SunRound2InteropTest.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/SunRound2InteropTest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/SunRound2InteropTest.java Thu May  4 07:52:32 2006
@@ -84,7 +84,7 @@
     SunClientUtil util;
     SunClient client = new SunClient();
 
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(SunRound2InteropTest.class);
     
     /**
      * Round2

Modified: webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/WMRound2InteropTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/WMRound2InteropTest.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/WMRound2InteropTest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/itest/test/interop/whitemesa/round2/WMRound2InteropTest.java Thu May  4 07:52:32 2006
@@ -85,7 +85,7 @@
     SunClientUtil util;
     SunClient client = new SunClient();
 
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(WMRound2InteropTest.class);
     
     /**
      * Round2

Modified: webservices/axis2/trunk/java/modules/integration/src/test/interop/util/XMLComparatorInterop.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/interop/util/XMLComparatorInterop.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/interop/util/XMLComparatorInterop.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/interop/util/XMLComparatorInterop.java Thu May  4 07:52:32 2006
@@ -26,7 +26,7 @@
 import java.util.Iterator;
 import java.util.Vector;
 public class XMLComparatorInterop {
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(XMLComparatorInterop.class);
 
     String failureNotice = "";
 

Modified: webservices/axis2/trunk/java/modules/integration/src/test/soap12testing/client/MessageComparator.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/soap12testing/client/MessageComparator.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/soap12testing/client/MessageComparator.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/soap12testing/client/MessageComparator.java Thu May  4 07:52:32 2006
@@ -37,7 +37,7 @@
 public class MessageComparator {
     //public static final String TEST_MAIN_DIR = "./modules/samples/";
     public static final String TEST_MAIN_DIR = "./";
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(MessageComparator.class);
 
     public boolean compare(String testNumber, InputStream replyMessage) {
         SOAPEnvelope replyMessageEnvelope;

Modified: webservices/axis2/trunk/java/modules/integration/src/test/soap12testing/client/SOAP12TestClient.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/soap12testing/client/SOAP12TestClient.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/soap12testing/client/SOAP12TestClient.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/soap12testing/client/SOAP12TestClient.java Thu May  4 07:52:32 2006
@@ -30,7 +30,7 @@
 
 public class SOAP12TestClient {
 
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(SOAP12TestClient.class);
 
     public String getReply(int port, String webserviceName,String testNumber) {
         String replyMessage = "";

Modified: webservices/axis2/trunk/java/modules/integration/src/test/soap12testing/client/SOAPCreater.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/soap12testing/client/SOAPCreater.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/soap12testing/client/SOAPCreater.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/soap12testing/client/SOAPCreater.java Thu May  4 07:52:32 2006
@@ -37,7 +37,7 @@
 
 public class SOAPCreater {
 
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(SOAPCreater.class);
     public String getStringFromSOAPMessage(String testNumber, URL url) throws IOException {
         File file =
             new File(

Modified: webservices/axis2/trunk/java/modules/integration/src/test/soap12testing/server/SimpleServer.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/src/test/soap12testing/server/SimpleServer.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/src/test/soap12testing/server/SimpleServer.java (original)
+++ webservices/axis2/trunk/java/modules/integration/src/test/soap12testing/server/SimpleServer.java Thu May  4 07:52:32 2006
@@ -28,7 +28,7 @@
 
 public class SimpleServer {
     private int port;
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(SimpleServer.class);
 
     public SimpleServer() {
         this.port = 8008;

Modified: webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/async/AsyncServiceTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/async/AsyncServiceTest.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/async/AsyncServiceTest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/async/AsyncServiceTest.java Thu May  4 07:52:32 2006
@@ -49,7 +49,7 @@
 
 public class AsyncServiceTest extends UtilServerBasedTestCase implements TestConstants {
 
-    protected Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(AsyncServiceTest.class);
     protected QName transportName = new QName("http://localhost/my",
             "NullTransport");
     EndpointReference targetEPR = new EndpointReference(

Modified: webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/CharactersetEncodingTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/CharactersetEncodingTest.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/CharactersetEncodingTest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/CharactersetEncodingTest.java Thu May  4 07:52:32 2006
@@ -43,7 +43,7 @@
  */
 public class CharactersetEncodingTest extends UtilServerBasedTestCase implements TestConstants {
 
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(CharactersetEncodingTest.class);
 
     private AxisService service;
 

Modified: webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/CommonsHTTPEchoRawXMLTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/CommonsHTTPEchoRawXMLTest.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/CommonsHTTPEchoRawXMLTest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/CommonsHTTPEchoRawXMLTest.java Thu May  4 07:52:32 2006
@@ -41,7 +41,7 @@
 
 public class CommonsHTTPEchoRawXMLTest extends UtilServerBasedTestCase implements TestConstants {
 
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(CommonsHTTPEchoRawXMLTest.class);
 
     private AxisService service;
 

Modified: webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/Echo.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/Echo.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/Echo.java (original)
+++ webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/Echo.java Thu May  4 07:52:32 2006
@@ -27,7 +27,7 @@
 
 public class Echo {
 
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(Echo.class);
     public Echo() {
     }
 

Modified: webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/EchoRawXMLMultipleTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/EchoRawXMLMultipleTest.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/EchoRawXMLMultipleTest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/EchoRawXMLMultipleTest.java Thu May  4 07:52:32 2006
@@ -43,7 +43,7 @@
 
 public class EchoRawXMLMultipleTest extends UtilServerBasedTestCase implements TestConstants {
 
-    protected Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(EchoRawXMLMultipleTest.class);
     protected QName transportName = new QName("http://localhost/my",
             "NullTransport");
 

Modified: webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/EchoRawXMLOnTwoChannelsTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/EchoRawXMLOnTwoChannelsTest.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/EchoRawXMLOnTwoChannelsTest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/EchoRawXMLOnTwoChannelsTest.java Thu May  4 07:52:32 2006
@@ -41,7 +41,7 @@
 
 public class EchoRawXMLOnTwoChannelsTest extends UtilServerBasedTestCase implements TestConstants {
 
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(EchoRawXMLOnTwoChannelsTest.class);
 
 
     private boolean finish = false;

Modified: webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/EchoRawXMLTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/EchoRawXMLTest.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/EchoRawXMLTest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/EchoRawXMLTest.java Thu May  4 07:52:32 2006
@@ -48,7 +48,7 @@
 
 public class EchoRawXMLTest extends UtilServerBasedTestCase implements TestConstants {
 
-    protected Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(EchoRawXMLTest.class);
     protected QName transportName = new QName("http://localhost/my",
             "NullTransport");
 

Modified: webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/HandlerFailureTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/HandlerFailureTest.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/HandlerFailureTest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/HandlerFailureTest.java Thu May  4 07:52:32 2006
@@ -49,7 +49,7 @@
 
 
 public class HandlerFailureTest extends UtilServerBasedTestCase implements TestConstants {
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(HandlerFailureTest.class);
 
     public HandlerFailureTest() {
         super(HandlerFailureTest.class.getName());

Modified: webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/MessageContextEnabledEcho.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/MessageContextEnabledEcho.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/MessageContextEnabledEcho.java (original)
+++ webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/MessageContextEnabledEcho.java Thu May  4 07:52:32 2006
@@ -23,7 +23,7 @@
 import org.apache.commons.logging.LogFactory;
 public class MessageContextEnabledEcho {
     private MessageContext msgcts;
-      private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(MessageContextEnabledEcho.class);
 
     public MessageContextEnabledEcho() {
     }

Modified: webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/MessageWithServerTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/MessageWithServerTest.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/MessageWithServerTest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/MessageWithServerTest.java Thu May  4 07:52:32 2006
@@ -42,7 +42,7 @@
 import java.net.Socket;
 
 public class MessageWithServerTest extends UtilServerBasedTestCase {
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(MessageWithServerTest.class);
     private QName serviceName = new QName("", "EchoService");
     private QName operationName =
             new QName("http://ws.apache.org/axis2", "echoVoid");

Modified: webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/ServiceGroupContextTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/ServiceGroupContextTest.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/ServiceGroupContextTest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/ServiceGroupContextTest.java Thu May  4 07:52:32 2006
@@ -60,7 +60,7 @@
     protected EndpointReference targetEPR = new EndpointReference("http://127.0.0.1:" +
             (UtilServer.TESTING_PORT) +
             "/axis2/services/RequestCounter");
-    protected Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(ServiceGroupContextTest.class);
     protected QName serviceName = new QName("RequestCounter");
     protected QName operationName = new QName("getRequestCount");
     protected QName transportName = new QName("http://localhost/my", "NullTransport");

Modified: webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/SpeakingHandler.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/SpeakingHandler.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/SpeakingHandler.java (original)
+++ webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/SpeakingHandler.java Thu May  4 07:52:32 2006
@@ -25,7 +25,7 @@
 import javax.xml.namespace.QName;
 
 public class SpeakingHandler extends AbstractHandler implements Handler {
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(SpeakingHandler.class);
     private String message;
     private QName name;
 

Modified: webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/SpeakingHandler1.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/SpeakingHandler1.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/SpeakingHandler1.java (original)
+++ webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/SpeakingHandler1.java Thu May  4 07:52:32 2006
@@ -28,7 +28,7 @@
 import javax.xml.namespace.QName;
 
 public class SpeakingHandler1 extends AbstractHandler implements Handler {
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(SpeakingHandler1.class);
     private String message;
     private QName name;
 

Modified: webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/ThreadingTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/ThreadingTest.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/ThreadingTest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/ThreadingTest.java Thu May  4 07:52:32 2006
@@ -38,7 +38,7 @@
 public class ThreadingTest extends UtilServerBasedTestCase implements TestConstants {
 
 
-    protected Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(ThreadingTest.class);
 
     protected QName transportName = new QName("http://localhost/my",
             "NullTransport");

Modified: webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/util/InvokerThread.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/util/InvokerThread.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/util/InvokerThread.java (original)
+++ webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/engine/util/InvokerThread.java Thu May  4 07:52:32 2006
@@ -40,7 +40,7 @@
                     + (UtilServer.TESTING_PORT)
                     + "/axis2/services/EchoXMLService/echoOMElement");
     protected QName operationName = new QName("echoOMElement");
-    protected Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(InvokerThread.class);
     private Exception thrownException = null;
     ConfigurationContext configContext;
 

Modified: webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/integration/UtilsJMSServer.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/integration/UtilsJMSServer.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/integration/UtilsJMSServer.java (original)
+++ webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/integration/UtilsJMSServer.java Thu May  4 07:52:32 2006
@@ -42,7 +42,7 @@
 
     public static final String REPOSITORY_JMS = "target/test-resources/jms-enabled-server-repository";
 
-    private static Log log = LogFactory.getLog(UtilsJMSServer.class);
+	private static final Log log = LogFactory.getLog(UtilsJMSServer.class);
 
     public static synchronized void deployService(AxisService service)
             throws AxisFault {

Modified: webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/integration/UtilsTCPServer.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/integration/UtilsTCPServer.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/integration/UtilsTCPServer.java (original)
+++ webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/integration/UtilsTCPServer.java Thu May  4 07:52:32 2006
@@ -39,7 +39,7 @@
 
     public static final String FAILURE_MESSAGE = "Intentional Failure";
 
-    private static Log log = LogFactory.getLog(UtilsTCPServer.class);
+	private static final Log log = LogFactory.getLog(UtilsTCPServer.class);
 
     public static synchronized void deployService(AxisService service)
             throws AxisFault {

Modified: webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/jms/JMSEchoRawXMLTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/jms/JMSEchoRawXMLTest.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/jms/JMSEchoRawXMLTest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/jms/JMSEchoRawXMLTest.java Thu May  4 07:52:32 2006
@@ -65,7 +65,7 @@
     private ConfigurationContext configContext;
 
     private boolean finish = false;
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(JMSEchoRawXMLTest.class);
 
     public JMSEchoRawXMLTest() {
         super(JMSEchoRawXMLTest.class.getName());

Modified: webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/mail/MailCharSetEncodingTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/mail/MailCharSetEncodingTest.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/mail/MailCharSetEncodingTest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/mail/MailCharSetEncodingTest.java Thu May  4 07:52:32 2006
@@ -56,7 +56,7 @@
     private EndpointReference targetEPR = new EndpointReference("mail:foo@127.0.0.1"
             + "/axis2/services/EchoXMLService/echoOMElement");
 
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(MailCharSetEncodingTest.class);
 
     private String stringServiceName = "EchoXMLService";
 

Modified: webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/mail/MailRequestResponseRawXMLTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/mail/MailRequestResponseRawXMLTest.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/mail/MailRequestResponseRawXMLTest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/mail/MailRequestResponseRawXMLTest.java Thu May  4 07:52:32 2006
@@ -56,7 +56,7 @@
     private EndpointReference targetEPR = new EndpointReference("mail:foo@127.0.0.1"
             + "/axis2/services/EchoXMLService/echoOMElement");
 
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(MailRequestResponseRawXMLTest.class);
 
     private QName serviceName = new QName("EchoXMLService");
 

Modified: webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/mail/MailetRequestResponseRawXMLTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/mail/MailetRequestResponseRawXMLTest.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/mail/MailetRequestResponseRawXMLTest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/mail/MailetRequestResponseRawXMLTest.java Thu May  4 07:52:32 2006
@@ -54,7 +54,7 @@
     private EndpointReference targetEPR =
             new EndpointReference("mail:axis2-server@127.0.0.1" +
                     "/axis2/services/EchoXMLService/echoOMElement");
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(MailetRequestResponseRawXMLTest.class);
     private QName serviceName = new QName("EchoXMLService");
     private QName operationName = new QName("echoOMElement");
 

Modified: webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/mtom/EchoRawMTOMFaultReportTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/mtom/EchoRawMTOMFaultReportTest.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/mtom/EchoRawMTOMFaultReportTest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/mtom/EchoRawMTOMFaultReportTest.java Thu May  4 07:52:32 2006
@@ -43,7 +43,7 @@
 
 public class EchoRawMTOMFaultReportTest extends UtilServerBasedTestCase {
 
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(EchoRawMTOMFaultReportTest.class);
 
     private QName serviceName = new QName("EchoService");
 

Modified: webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/mtom/EchoRawMTOMLoadTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/mtom/EchoRawMTOMLoadTest.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/mtom/EchoRawMTOMLoadTest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/mtom/EchoRawMTOMLoadTest.java Thu May  4 07:52:32 2006
@@ -45,7 +45,7 @@
 
 public class EchoRawMTOMLoadTest extends UtilServerBasedTestCase implements TestConstants {
 
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(EchoRawMTOMLoadTest.class);
 
     private ServiceContext serviceContext;
 

Modified: webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/mtom/EchoRawMTOMTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/mtom/EchoRawMTOMTest.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/mtom/EchoRawMTOMTest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/mtom/EchoRawMTOMTest.java Thu May  4 07:52:32 2006
@@ -54,7 +54,7 @@
 public class EchoRawMTOMTest extends UtilServerBasedTestCase implements TestConstants {
 
 
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(EchoRawMTOMTest.class);
 
     private AxisService service;
 

Modified: webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/mtom/EchoRawMTOMToBase64Test.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/mtom/EchoRawMTOMToBase64Test.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/mtom/EchoRawMTOMToBase64Test.java (original)
+++ webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/mtom/EchoRawMTOMToBase64Test.java Thu May  4 07:52:32 2006
@@ -53,7 +53,7 @@
             + (UtilServer.TESTING_PORT)
             + "/axis2/services/EchoXMLService/echoMTOMtoBase64");
 
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(EchoRawMTOMToBase64Test.class);
 
     private QName serviceName = new QName("EchoXMLService");
 

Modified: webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/rpc/MultirefTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/rpc/MultirefTest.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/rpc/MultirefTest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/rpc/MultirefTest.java Thu May  4 07:52:32 2006
@@ -66,7 +66,7 @@
             new EndpointReference("http://127.0.0.1:"
                     + (UtilServer.TESTING_PORT)
                     + "/axis2/services/EchoXMLService/concat");
-    protected Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(MultirefTest.class);
     protected QName serviceName = new QName("EchoXMLService");
     protected QName operationName = new QName(NAMESPACE, "concat");
     protected QName transportName = new QName(NAMESPACE,

Modified: webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/rpc/RPCCallTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/rpc/RPCCallTest.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/rpc/RPCCallTest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/rpc/RPCCallTest.java Thu May  4 07:52:32 2006
@@ -62,7 +62,7 @@
 
 
     protected EndpointReference targetEPR;
-    protected Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(RPCCallTest.class);
     protected QName serviceName = new QName("EchoXMLService");
     protected QName operationName = new QName("http://org.apache.axis2/xsd", "concat");
     protected QName transportName = new QName("http://org.apache.axis2/xsd",

Modified: webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/swa/EchoRawSwATest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/swa/EchoRawSwATest.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/swa/EchoRawSwATest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/swa/EchoRawSwATest.java Thu May  4 07:52:32 2006
@@ -45,7 +45,7 @@
 
 public class EchoRawSwATest extends UtilServerBasedTestCase {
 
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(EchoRawSwATest.class);
 
     private QName serviceName = new QName("EchoSwAService");
 

Modified: webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/tcp/TCPEchoRawXMLTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/tcp/TCPEchoRawXMLTest.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/tcp/TCPEchoRawXMLTest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/tcp/TCPEchoRawXMLTest.java Thu May  4 07:52:32 2006
@@ -64,7 +64,7 @@
     private ConfigurationContext configContext;
 
     private boolean finish = false;
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(TCPEchoRawXMLTest.class);
 
     public TCPEchoRawXMLTest() {
         super(TCPEchoRawXMLTest.class.getName());

Modified: webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/tcp/TCPTwoChannelEchoRawXMLTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/tcp/TCPTwoChannelEchoRawXMLTest.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/tcp/TCPTwoChannelEchoRawXMLTest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/test/org/apache/axis2/tcp/TCPTwoChannelEchoRawXMLTest.java Thu May  4 07:52:32 2006
@@ -53,7 +53,7 @@
     private AxisService service;
     private ConfigurationContext configContext;
 
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(TCPTwoChannelEchoRawXMLTest.class);
 
     private boolean finish = false;
 

Modified: webservices/axis2/trunk/java/modules/integration/test/samples/wsdl/perf/PerfPortTypeTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/test/samples/wsdl/perf/PerfPortTypeTest.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/test/samples/wsdl/perf/PerfPortTypeTest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/test/samples/wsdl/perf/PerfPortTypeTest.java Thu May  4 07:52:32 2006
@@ -28,7 +28,7 @@
 
 public class PerfPortTypeTest extends UtilServerBasedTestCase {
 
-    static Log log = LogFactory.getLog(PerfPortTypeTest.class.getName());
+	private static final Log log = LogFactory.getLog(PerfPortTypeTest.class);
 
     protected static final String SERVICE_REPOSITORY = "target/perf/build/repo";
 

Modified: webservices/axis2/trunk/java/modules/integration/test/samples/wsdl/perf2/PerfPortTypeTest.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/integration/test/samples/wsdl/perf2/PerfPortTypeTest.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/integration/test/samples/wsdl/perf2/PerfPortTypeTest.java (original)
+++ webservices/axis2/trunk/java/modules/integration/test/samples/wsdl/perf2/PerfPortTypeTest.java Thu May  4 07:52:32 2006
@@ -28,7 +28,7 @@
 
 public class PerfPortTypeTest extends UtilServerBasedTestCase {
 
-    static Log log = LogFactory.getLog(PerfPortTypeTest.class.getName());
+	private static final Log log = LogFactory.getLog(PerfPortTypeTest.class);
 
     protected static final String SERVICE_REPOSITORY = "target/perf2/build/repo";
 

Modified: webservices/axis2/trunk/java/modules/java2wsdl/src/org/apache/ws/java2wsdl/SchemaGenerator.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/java2wsdl/src/org/apache/ws/java2wsdl/SchemaGenerator.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/java2wsdl/src/org/apache/ws/java2wsdl/SchemaGenerator.java (original)
+++ webservices/axis2/trunk/java/modules/java2wsdl/src/org/apache/ws/java2wsdl/SchemaGenerator.java Thu May  4 07:52:32 2006
@@ -39,7 +39,7 @@
 
     protected XmlSchemaCollection xmlSchemaCollection = new XmlSchemaCollection();
 
-    protected Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(SchemaGenerator.class);
 
     private ClassLoader classLoader;
 

Modified: webservices/axis2/trunk/java/modules/java2wsdl/src/org/apache/ws/java2wsdl/bytecode/ParamNameExtractor.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/java2wsdl/src/org/apache/ws/java2wsdl/bytecode/ParamNameExtractor.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/java2wsdl/src/org/apache/ws/java2wsdl/bytecode/ParamNameExtractor.java (original)
+++ webservices/axis2/trunk/java/modules/java2wsdl/src/org/apache/ws/java2wsdl/bytecode/ParamNameExtractor.java Thu May  4 07:52:32 2006
@@ -13,7 +13,7 @@
  */
 public class ParamNameExtractor {
 
-    protected static Log log = LogFactory.getLog(ParamNameExtractor.class.getName());
+	private static final Log log = LogFactory.getLog(ParamNameExtractor.class);
 
     /**
      * Retrieves a list of function parameter names from a method. 

Modified: webservices/axis2/trunk/java/modules/jibx/test/org/apache/axis2/jibx/Echo.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/jibx/test/org/apache/axis2/jibx/Echo.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/jibx/test/org/apache/axis2/jibx/Echo.java (original)
+++ webservices/axis2/trunk/java/modules/jibx/test/org/apache/axis2/jibx/Echo.java Thu May  4 07:52:32 2006
@@ -22,7 +22,7 @@
 
 public class Echo {
 
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(Echo.class);
     
     public Echo() {
     }

Modified: webservices/axis2/trunk/java/modules/saaj/src/org/apache/axis2/saaj/SOAPConnectionImpl.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/saaj/src/org/apache/axis2/saaj/SOAPConnectionImpl.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/saaj/src/org/apache/axis2/saaj/SOAPConnectionImpl.java (original)
+++ webservices/axis2/trunk/java/modules/saaj/src/org/apache/axis2/saaj/SOAPConnectionImpl.java Thu May  4 07:52:32 2006
@@ -63,7 +63,7 @@
 
     private ServiceClient serviceClient;
 
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(SOAPConnectionImpl.class);
 
     /**
      * Sends the given message to the specified endpoint and

Modified: webservices/axis2/trunk/java/modules/samples/src/sample/amazon/search/ClientCallbackHandler.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/samples/src/sample/amazon/search/ClientCallbackHandler.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/samples/src/sample/amazon/search/ClientCallbackHandler.java (original)
+++ webservices/axis2/trunk/java/modules/samples/src/sample/amazon/search/ClientCallbackHandler.java Thu May  4 07:52:32 2006
@@ -59,7 +59,7 @@
      * Stores the response
      */
     private AsyncResult myResult;
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(ClientCallbackHandler.class);
 
     /**
      * method onComplete

Modified: webservices/axis2/trunk/java/modules/samples/src/userguide/loggingmodule/LogHandler.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/samples/src/userguide/loggingmodule/LogHandler.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/samples/src/userguide/loggingmodule/LogHandler.java (original)
+++ webservices/axis2/trunk/java/modules/samples/src/userguide/loggingmodule/LogHandler.java Thu May  4 07:52:32 2006
@@ -26,7 +26,7 @@
 import javax.xml.namespace.QName;
 
 public class LogHandler extends AbstractHandler implements Handler {
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(LogHandler.class);
     private QName name;
 
     public QName getName() {

Modified: webservices/axis2/trunk/java/modules/security/src/org/apache/axis2/security/WSDoAllReceiver.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/security/src/org/apache/axis2/security/WSDoAllReceiver.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/security/src/org/apache/axis2/security/WSDoAllReceiver.java (original)
+++ webservices/axis2/trunk/java/modules/security/src/org/apache/axis2/security/WSDoAllReceiver.java Thu May  4 07:52:32 2006
@@ -56,7 +56,7 @@
     
     private static final long serialVersionUID = 7685802089392898320L;
     
-    protected static Log log = LogFactory.getLog(WSDoAllReceiver.class.getName());
+	private static final Log log = LogFactory.getLog(WSDoAllReceiver.class);
     
     public WSDoAllReceiver() {
         super();

Modified: webservices/axis2/trunk/java/modules/security/src/org/apache/axis2/security/WSDoAllSender.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/security/src/org/apache/axis2/security/WSDoAllSender.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/security/src/org/apache/axis2/security/WSDoAllSender.java (original)
+++ webservices/axis2/trunk/java/modules/security/src/org/apache/axis2/security/WSDoAllSender.java Thu May  4 07:52:32 2006
@@ -43,7 +43,7 @@
     
     private static final long serialVersionUID = 3016802164501419165L;
     
-    protected static Log log = LogFactory.getLog(WSDoAllSender.class.getName());
+	private static final Log log = LogFactory.getLog(WSDoAllSender.class);
     
     /**
      * TODO: This is not handled right now since converting to DOOM does not preserve

Modified: webservices/axis2/trunk/java/modules/security/src/org/apache/axis2/security/trust/STSMessageReceiver.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/security/src/org/apache/axis2/security/trust/STSMessageReceiver.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/security/src/org/apache/axis2/security/trust/STSMessageReceiver.java (original)
+++ webservices/axis2/trunk/java/modules/security/src/org/apache/axis2/security/trust/STSMessageReceiver.java Thu May  4 07:52:32 2006
@@ -29,7 +29,7 @@
 
 public class STSMessageReceiver extends AbstractInOutSyncMessageReceiver {
     
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(STSMessageReceiver.class);
     
     public void invokeBusinessLogic(MessageContext inMessage,
             MessageContext outMessage) throws AxisFault {

Modified: webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/model/PolicyEngineData.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/model/PolicyEngineData.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/model/PolicyEngineData.java (original)
+++ webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/model/PolicyEngineData.java Thu May  4 07:52:32 2006
@@ -26,7 +26,7 @@
 
 public class PolicyEngineData {
 
-    private static Log log = LogFactory.getLog(PolicyEngineData.class);
+	private static final Log log = LogFactory.getLog(PolicyEngineData.class);
     
     public void initializeWithDefaults() {
         

Modified: webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/parser/WSSPolicyProcessor.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/parser/WSSPolicyProcessor.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/parser/WSSPolicyProcessor.java (original)
+++ webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/parser/WSSPolicyProcessor.java Thu May  4 07:52:32 2006
@@ -51,7 +51,7 @@
 
 public class WSSPolicyProcessor {
     
-    private static Log log = LogFactory.getLog(WSSPolicyProcessor.class);
+	private static final Log log = LogFactory.getLog(WSSPolicyProcessor.class);
 
     FileInputStream fis = null;
 

Modified: webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/parser/processors/AlgorithmSuiteProcessor.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/parser/processors/AlgorithmSuiteProcessor.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/parser/processors/AlgorithmSuiteProcessor.java (original)
+++ webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/parser/processors/AlgorithmSuiteProcessor.java Thu May  4 07:52:32 2006
@@ -29,7 +29,7 @@
 
 public class AlgorithmSuiteProcessor {
     
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(AlgorithmSuiteProcessor.class);
     
     private boolean initializedAlgorithmSuite = false;
 

Modified: webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/parser/processors/AsymmetricBindingProcessor.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/parser/processors/AsymmetricBindingProcessor.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/parser/processors/AsymmetricBindingProcessor.java (original)
+++ webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/parser/processors/AsymmetricBindingProcessor.java Thu May  4 07:52:32 2006
@@ -24,7 +24,7 @@
 
 public class AsymmetricBindingProcessor {
 
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(AsymmetricBindingProcessor.class);
     
     private boolean initializedAsymmetricBinding = false;
     

Modified: webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/parser/processors/EncryptedPartsElementsProcessor.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/parser/processors/EncryptedPartsElementsProcessor.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/parser/processors/EncryptedPartsElementsProcessor.java (original)
+++ webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/parser/processors/EncryptedPartsElementsProcessor.java Thu May  4 07:52:32 2006
@@ -33,7 +33,7 @@
 
 public class EncryptedPartsElementsProcessor {
 
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(EncryptedPartsElementsProcessor.class);
 
 	private boolean initializedEncryptedParts = false;
 

Modified: webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/parser/processors/EndorsingSupportingTokensProcessor.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/parser/processors/EndorsingSupportingTokensProcessor.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/parser/processors/EndorsingSupportingTokensProcessor.java (original)
+++ webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/parser/processors/EndorsingSupportingTokensProcessor.java Thu May  4 07:52:32 2006
@@ -24,7 +24,7 @@
 
 public class EndorsingSupportingTokensProcessor {
     
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(EndorsingSupportingTokensProcessor.class);
     
     private boolean initializedEndorsingSupportingTokens = false;
 

Modified: webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/parser/processors/InitiatorRecipientTokenProcessor.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/parser/processors/InitiatorRecipientTokenProcessor.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/parser/processors/InitiatorRecipientTokenProcessor.java (original)
+++ webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/parser/processors/InitiatorRecipientTokenProcessor.java Thu May  4 07:52:32 2006
@@ -27,7 +27,7 @@
 
 public class InitiatorRecipientTokenProcessor {
     
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(InitiatorRecipientTokenProcessor.class);
     
     private boolean initializedInitiatorToken = false;
 

Modified: webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/parser/processors/LayoutProcessor.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/parser/processors/LayoutProcessor.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/parser/processors/LayoutProcessor.java (original)
+++ webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/parser/processors/LayoutProcessor.java Thu May  4 07:52:32 2006
@@ -28,7 +28,7 @@
 
 public class LayoutProcessor {
 
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(LayoutProcessor.class);
 
     private boolean initializedLayout = false;
     

Modified: webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/parser/processors/SignEncProtectTokenProcessor.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/parser/processors/SignEncProtectTokenProcessor.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/parser/processors/SignEncProtectTokenProcessor.java (original)
+++ webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/parser/processors/SignEncProtectTokenProcessor.java Thu May  4 07:52:32 2006
@@ -27,7 +27,7 @@
 
 public class SignEncProtectTokenProcessor {
     
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(SignEncProtectTokenProcessor.class);
     
     private boolean initializedSignatureToken = false;
 

Modified: webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/parser/processors/SignedEndorsingSupportingTokensProcessor.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/parser/processors/SignedEndorsingSupportingTokensProcessor.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/parser/processors/SignedEndorsingSupportingTokensProcessor.java (original)
+++ webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/parser/processors/SignedEndorsingSupportingTokensProcessor.java Thu May  4 07:52:32 2006
@@ -24,7 +24,7 @@
 
 public class SignedEndorsingSupportingTokensProcessor {
 
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(SignedEndorsingSupportingTokensProcessor.class);
     
     private boolean initializedSignedEndorsingSupportingTokens = false;
     

Modified: webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/parser/processors/SignedPartsElementsProcessor.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/parser/processors/SignedPartsElementsProcessor.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/parser/processors/SignedPartsElementsProcessor.java (original)
+++ webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/parser/processors/SignedPartsElementsProcessor.java Thu May  4 07:52:32 2006
@@ -33,7 +33,7 @@
 
 public class SignedPartsElementsProcessor {
     
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(SignedPartsElementsProcessor.class);
     
 	private boolean initializedSignedParts = false;
 

Modified: webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/parser/processors/SignedSupportingTokensProcessor.java
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/parser/processors/SignedSupportingTokensProcessor.java?rev=399719&r1=399718&r2=399719&view=diff
==============================================================================
--- webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/parser/processors/SignedSupportingTokensProcessor.java (original)
+++ webservices/axis2/trunk/java/modules/security/src/org/apache/ws/security/policy/parser/processors/SignedSupportingTokensProcessor.java Thu May  4 07:52:32 2006
@@ -24,7 +24,7 @@
 
 public class SignedSupportingTokensProcessor {
     
-    private Log log = LogFactory.getLog(getClass());
+	private static final Log log = LogFactory.getLog(SignedSupportingTokensProcessor.class);
     
     private boolean initializedSignedSupportingTokens = false;