You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ch...@apache.org on 2007/08/09 18:40:08 UTC

svn commit: r564271 [14/18] - in /activemq/trunk: activemq-core/src/main/java/org/apache/activemq/ activemq-core/src/main/java/org/apache/activemq/advisory/ activemq-core/src/main/java/org/apache/activemq/blob/ activemq-core/src/main/java/org/apache/ac...

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/network/NetworkReconnectTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/network/NetworkReconnectTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/network/NetworkReconnectTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/network/NetworkReconnectTest.java Thu Aug  9 09:37:49 2007
@@ -48,7 +48,7 @@
  */
 public class NetworkReconnectTest extends TestCase {
 
-    protected static final Log log = LogFactory.getLog(NetworkReconnectTest.class);
+    private static final Log LOG = LogFactory.getLog(NetworkReconnectTest.class);
 
     private BrokerService producerBroker;
     private BrokerService consumerBroker;
@@ -184,9 +184,9 @@
 
     protected void setUp() throws Exception {
 
-        log.info("===============================================================================");
-        log.info("Running Test Case: " + getName());
-        log.info("===============================================================================");
+        LOG.info("===============================================================================");
+        LOG.info("Running Test Case: " + getName());
+        LOG.info("===============================================================================");
 
         producerConnectionFactory = createProducerConnectionFactory();
         consumerConnectionFactory = createConsumerConnectionFactory();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/network/SSHTunnelNetworkReconnectTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/network/SSHTunnelNetworkReconnectTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/network/SSHTunnelNetworkReconnectTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/network/SSHTunnelNetworkReconnectTest.java Thu Aug  9 09:37:49 2007
@@ -35,7 +35,7 @@
  * @author chirino
  */
 public class SSHTunnelNetworkReconnectTest extends NetworkReconnectTest {
-    private static final transient Log log = LogFactory.getLog(SSHTunnelNetworkReconnectTest.class);
+    private static final transient Log LOG = LogFactory.getLog(SSHTunnelNetworkReconnectTest.class);
 
     ArrayList processes = new ArrayList();
 

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/network/SimpleNetworkTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/network/SimpleNetworkTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/network/SimpleNetworkTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/network/SimpleNetworkTest.java Thu Aug  9 09:37:49 2007
@@ -45,7 +45,7 @@
 
 public class SimpleNetworkTest extends TestCase {
 
-    protected static final Log log = LogFactory.getLog(SimpleNetworkTest.class);
+    private static final Log LOG = LogFactory.getLog(SimpleNetworkTest.class);
 
     protected static final int MESSAGE_COUNT = 10;
     protected AbstractApplicationContext context;
@@ -86,11 +86,11 @@
             TextMessage msg = localSession.createTextMessage("test msg: " + i);
             TextMessage result = (TextMessage)requestor.request(msg);
             assertNotNull(result);
-            log.info(result.getText());
+            LOG.info(result.getText());
         }
     }
 
-    public void XtestFiltering() throws Exception {
+    public void xtestFiltering() throws Exception {
 
         MessageConsumer includedConsumer = remoteSession.createConsumer(included);
         MessageConsumer excludedConsumer = remoteSession.createConsumer(excluded);
@@ -104,7 +104,7 @@
         assertNotNull(includedConsumer.receive(500));
     }
 
-    public void XtestConduitBridge() throws Exception {
+    public void xtestConduitBridge() throws Exception {
         MessageConsumer consumer1 = remoteSession.createConsumer(included);
         MessageConsumer consumer2 = remoteSession.createConsumer(included);
         MessageProducer producer = localSession.createProducer(included);
@@ -121,7 +121,7 @@
         assertNull(consumer2.receive(500));
     }
 
-    public void XtestDurableStoreAndForward() throws Exception {
+    public void xtestDurableStoreAndForward() throws Exception {
         // create a remote durable consumer
         MessageConsumer remoteConsumer = remoteSession.createDurableSubscriber(included, consumerName);
         Thread.sleep(1000);
@@ -192,10 +192,10 @@
         return "org/apache/activemq/network/localBroker.xml";
     }
 
-    protected BrokerService createBroker(String URI) throws Exception {
-        Resource resource = new ClassPathResource(URI);
+    protected BrokerService createBroker(String uri) throws Exception {
+        Resource resource = new ClassPathResource(uri);
         BrokerFactoryBean factory = new BrokerFactoryBean(resource);
-        resource = new ClassPathResource(URI);
+        resource = new ClassPathResource(uri);
         factory = new BrokerFactoryBean(resource);
         factory.afterPropertiesSet();
         BrokerService result = factory.getBroker();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/network/jms/QueueBridgeTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/network/jms/QueueBridgeTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/network/jms/QueueBridgeTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/network/jms/QueueBridgeTest.java Thu Aug  9 09:37:49 2007
@@ -39,7 +39,7 @@
 
 public class QueueBridgeTest extends TestCase implements MessageListener {
 
-    protected static final Log log = LogFactory.getLog(QueueBridgeTest.class);
+    private static final Log LOG = LogFactory.getLog(QueueBridgeTest.class);
 
     protected static final int MESSAGE_COUNT = 10;
     protected AbstractApplicationContext context;
@@ -90,7 +90,7 @@
             TextMessage msg = requestServerSession.createTextMessage("test msg: " + i);
             TextMessage result = (TextMessage)requestor.request(msg);
             assertNotNull(result);
-            log.info(result.getText());
+            LOG.info(result.getText());
         }
     }
 

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/network/jms/TopicBridgeSpringTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/network/jms/TopicBridgeSpringTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/network/jms/TopicBridgeSpringTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/network/jms/TopicBridgeSpringTest.java Thu Aug  9 09:37:49 2007
@@ -38,7 +38,7 @@
 
 public class TopicBridgeSpringTest extends TestCase implements MessageListener {
 
-    protected static final Log log = LogFactory.getLog(TopicBridgeSpringTest.class);
+    private static final Log LOG = LogFactory.getLog(TopicBridgeSpringTest.class);
 
     protected static final int MESSAGE_COUNT = 10;
     protected AbstractApplicationContext context;
@@ -81,10 +81,10 @@
     public void testTopicRequestorOverBridge() throws JMSException {
         for (int i = 0; i < MESSAGE_COUNT; i++) {
             TextMessage msg = requestServerSession.createTextMessage("test msg: " + i);
-            log.info("Making request: " + msg);
+            LOG.info("Making request: " + msg);
             TextMessage result = (TextMessage)requestor.request(msg);
             assertNotNull(result);
-            log.info("Received result: " + result.getText());
+            LOG.info("Received result: " + result.getText());
         }
     }
 
@@ -96,7 +96,7 @@
             replyTo = msg.getJMSReplyTo();
             textMsg.clearBody();
             textMsg.setText(payload);
-            log.info("Sending response: " + textMsg);
+            LOG.info("Sending response: " + textMsg);
             requestServerProducer.send(replyTo, textMsg);
         } catch (JMSException e) {
             // TODO Auto-generated catch block

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/BooleanStreamTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/BooleanStreamTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/BooleanStreamTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/BooleanStreamTest.java Thu Aug  9 09:37:49 2007
@@ -35,7 +35,7 @@
     int numberOfBytes = 8 * 200;
 
     interface BooleanValueSet {
-        public boolean getBooleanValueFor(int index, int count);
+        boolean getBooleanValueFor(int index, int count);
     }
 
     public void testBooleanMarshallingUsingAllTrue() throws Exception {

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/DataFileGenerator.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/DataFileGenerator.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/DataFileGenerator.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/DataFileGenerator.java Thu Aug  9 09:37:49 2007
@@ -29,16 +29,16 @@
 
 import junit.framework.Assert;
 
-abstract public class DataFileGenerator extends Assert {
+public abstract class DataFileGenerator extends Assert {
 
-    static final File moduleBaseDir;
-    static final File controlDir;
-    static final File classFileDir;
+    static final File MODULE_BASE_DIR;
+    static final File CONTROL_DIR;
+    static final File CLASS_FILE_DIR;
 
     static {
-        moduleBaseDir = new File(System.getProperty("basedir", "."));
-        controlDir = new File(moduleBaseDir, "src/test/resources/openwire-control");
-        classFileDir = new File(moduleBaseDir, "src/test/java/org/apache/activemq/openwire");
+        MODULE_BASE_DIR = new File(System.getProperty("basedir", "."));
+        CONTROL_DIR = new File(MODULE_BASE_DIR, "src/test/resources/openwire-control");
+        CLASS_FILE_DIR = new File(MODULE_BASE_DIR, "src/test/java/org/apache/activemq/openwire");
     }
 
     public static void main(String[] args) throws Exception {
@@ -55,7 +55,7 @@
     public static ArrayList getAllDataFileGenerators() throws Exception {
         // System.out.println("Looking for generators in : "+classFileDir);
         ArrayList l = new ArrayList();
-        File[] files = classFileDir.listFiles();
+        File[] files = CLASS_FILE_DIR.listFiles();
         for (int i = 0; files != null && i < files.length; i++) {
             File file = files[i];
             if (file.getName().endsWith("Data.java")) {
@@ -83,8 +83,8 @@
     }
 
     public void generateControlFile() throws Exception {
-        controlDir.mkdirs();
-        File dataFile = new File(controlDir, getClass().getName() + ".bin");
+        CONTROL_DIR.mkdirs();
+        File dataFile = new File(CONTROL_DIR, getClass().getName() + ".bin");
 
         OpenWireFormat wf = new OpenWireFormat();
         wf.setCacheEnabled(false);
@@ -121,7 +121,7 @@
     }
 
     public void assertControlFileIsEqual() throws Exception {
-        File dataFile = new File(controlDir, getClass().getName() + ".bin");
+        File dataFile = new File(CONTROL_DIR, getClass().getName() + ".bin");
         FileInputStream is1 = new FileInputStream(dataFile);
         int pos = 0;
         try {
@@ -142,5 +142,5 @@
         }
     }
 
-    abstract protected Object createObject() throws IOException;
+    protected abstract Object createObject() throws IOException;
 }

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/DataFileGeneratorTestSupport.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/DataFileGeneratorTestSupport.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/DataFileGeneratorTestSupport.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/DataFileGeneratorTestSupport.java Thu Aug  9 09:37:49 2007
@@ -61,14 +61,14 @@
 
 public abstract class DataFileGeneratorTestSupport extends TestSupport {
 
-    private static final Log log = LogFactory.getLog(DataFileGeneratorTestSupport.class);
-
     protected static final Object[] EMPTY_ARGUMENTS = {};
-    private static Throwable singletonException = new Exception("shared exception");
+    private static final Log LOG = LogFactory.getLog(DataFileGeneratorTestSupport.class);
+
+    private static final Throwable SINGLETON_EXCEPTION = new Exception("shared exception");
+    private static final File MODULE_BASE_DIR;
+    private static final File CONTROL_DIR;
+    private static final File CLASS_FILE_DIR;
 
-    static final File moduleBaseDir;
-    static final File controlDir;
-    static final File classFileDir;
 
     static {
         File basedir = null;
@@ -79,15 +79,15 @@
         } catch (Exception e) {
             throw new RuntimeException(e);
         }
-        moduleBaseDir = basedir;
-        controlDir = new File(moduleBaseDir, "src/test/resources/openwire-control");
-        classFileDir = new File(moduleBaseDir, "src/test/java/org/activemq/openwire");
+        MODULE_BASE_DIR = basedir;
+        CONTROL_DIR = new File(MODULE_BASE_DIR, "src/test/resources/openwire-control");
+        CLASS_FILE_DIR = new File(MODULE_BASE_DIR, "src/test/java/org/activemq/openwire");
     }
 
     private int counter;
     private OpenWireFormat openWireformat;
 
-    public void XXXX_testControlFileIsValid() throws Exception {
+    public void xtestControlFileIsValid() throws Exception {
         generateControlFile();
         assertControlFileIsEqual();
     }
@@ -96,7 +96,7 @@
         ByteArrayOutputStream buffer = new ByteArrayOutputStream();
         DataOutputStream ds = new DataOutputStream(buffer);
         Object expected = createObject();
-        log.info("Created: " + expected);
+        LOG.info("Created: " + expected);
         openWireformat.marshal(expected, ds);
         ds.close();
 
@@ -105,7 +105,7 @@
         DataInputStream dis = new DataInputStream(in);
         Object actual = openWireformat.unmarshal(dis);
 
-        log.info("Parsed: " + actual);
+        LOG.info("Parsed: " + actual);
 
         assertBeansEqual("", new HashSet(), expected, actual);
     }
@@ -131,7 +131,7 @@
                     expectedValue = method.invoke(expected, EMPTY_ARGUMENTS);
                     actualValue = method.invoke(actual, EMPTY_ARGUMENTS);
                 } catch (Exception e) {
-                    log.info("Failed to access property: " + name);
+                    LOG.info("Failed to access property: " + name);
                 }
                 assertPropertyValuesEqual(message + name, comparedObjects, expectedValue, actualValue);
             }
@@ -202,8 +202,8 @@
     }
 
     public void generateControlFile() throws Exception {
-        controlDir.mkdirs();
-        File dataFile = new File(controlDir, getClass().getName() + ".bin");
+        CONTROL_DIR.mkdirs();
+        File dataFile = new File(CONTROL_DIR, getClass().getName() + ".bin");
 
         FileOutputStream os = new FileOutputStream(dataFile);
         DataOutputStream ds = new DataOutputStream(os);
@@ -222,7 +222,7 @@
     }
 
     public void assertControlFileIsEqual() throws Exception {
-        File dataFile = new File(controlDir, getClass().getName() + ".bin");
+        File dataFile = new File(CONTROL_DIR, getClass().getName() + ".bin");
         FileInputStream is1 = new FileInputStream(dataFile);
         int pos = 0;
         try {
@@ -311,7 +311,7 @@
     protected Throwable createThrowable(String string) {
         // we have issues with stack frames not being equal so share the same
         // exception each time
-        return singletonException;
+        return SINGLETON_EXCEPTION;
     }
 
     protected BooleanExpression createBooleanExpression(String string) {

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/NumberRangesWhileMarshallingTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/NumberRangesWhileMarshallingTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/NumberRangesWhileMarshallingTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/NumberRangesWhileMarshallingTest.java Thu Aug  9 09:37:49 2007
@@ -32,7 +32,7 @@
  */
 public class NumberRangesWhileMarshallingTest extends TestCase {
 
-    private static final Log log = LogFactory.getLog(NumberRangesWhileMarshallingTest.class);
+    private static final Log LOG = LogFactory.getLog(NumberRangesWhileMarshallingTest.class);
 
     protected String connectionId = "Cheese";
     protected ByteArrayOutputStream buffer = new ByteArrayOutputStream();
@@ -74,7 +74,7 @@
         for (int i = 0; i < numberValues.length; i++) {
             long value = numberValues[i];
             String expected = Long.toHexString(value);
-            log.info("Unmarshaling value: " + i + " = " + expected);
+            LOG.info("Unmarshaling value: " + i + " = " + expected);
 
             SessionId command = (SessionId)openWireformat.unmarshal(dis);
             assertEquals("connection ID in object: " + i, connectionId, command.getConnectionId());

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ActiveMQBytesMessageTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ActiveMQBytesMessageTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ActiveMQBytesMessageTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ActiveMQBytesMessageTest.java Thu Aug  9 09:37:49 2007
@@ -30,7 +30,7 @@
  */
 public class ActiveMQBytesMessageTest extends ActiveMQMessageTest {
 
-    public static ActiveMQBytesMessageTest SINGLETON = new ActiveMQBytesMessageTest();
+    public static final ActiveMQBytesMessageTest SINGLETON = new ActiveMQBytesMessageTest();
 
     public Object createObject() throws Exception {
         ActiveMQBytesMessage info = new ActiveMQBytesMessage();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ActiveMQMapMessageTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ActiveMQMapMessageTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ActiveMQMapMessageTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ActiveMQMapMessageTest.java Thu Aug  9 09:37:49 2007
@@ -30,7 +30,7 @@
  */
 public class ActiveMQMapMessageTest extends ActiveMQMessageTest {
 
-    public static ActiveMQMapMessageTest SINGLETON = new ActiveMQMapMessageTest();
+    public static final ActiveMQMapMessageTest SINGLETON = new ActiveMQMapMessageTest();
 
     public Object createObject() throws Exception {
         ActiveMQMapMessage info = new ActiveMQMapMessage();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ActiveMQMessageTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ActiveMQMessageTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ActiveMQMessageTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ActiveMQMessageTest.java Thu Aug  9 09:37:49 2007
@@ -30,7 +30,7 @@
  */
 public class ActiveMQMessageTest extends MessageTestSupport {
 
-    public static ActiveMQMessageTest SINGLETON = new ActiveMQMessageTest();
+    public static final ActiveMQMessageTest SINGLETON = new ActiveMQMessageTest();
 
     public Object createObject() throws Exception {
         ActiveMQMessage info = new ActiveMQMessage();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ActiveMQObjectMessageTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ActiveMQObjectMessageTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ActiveMQObjectMessageTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ActiveMQObjectMessageTest.java Thu Aug  9 09:37:49 2007
@@ -30,7 +30,7 @@
  */
 public class ActiveMQObjectMessageTest extends ActiveMQMessageTest {
 
-    public static ActiveMQObjectMessageTest SINGLETON = new ActiveMQObjectMessageTest();
+    public static final ActiveMQObjectMessageTest SINGLETON = new ActiveMQObjectMessageTest();
 
     public Object createObject() throws Exception {
         ActiveMQObjectMessage info = new ActiveMQObjectMessage();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ActiveMQQueueTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ActiveMQQueueTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ActiveMQQueueTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ActiveMQQueueTest.java Thu Aug  9 09:37:49 2007
@@ -28,7 +28,7 @@
  */
 public class ActiveMQQueueTest extends ActiveMQDestinationTestSupport {
 
-    public static ActiveMQQueueTest SINGLETON = new ActiveMQQueueTest();
+    public static final ActiveMQQueueTest SINGLETON = new ActiveMQQueueTest();
 
     public Object createObject() throws Exception {
         ActiveMQQueue info = new ActiveMQQueue();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ActiveMQStreamMessageTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ActiveMQStreamMessageTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ActiveMQStreamMessageTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ActiveMQStreamMessageTest.java Thu Aug  9 09:37:49 2007
@@ -28,7 +28,7 @@
  */
 public class ActiveMQStreamMessageTest extends ActiveMQMessageTest {
 
-    public static ActiveMQStreamMessageTest SINGLETON = new ActiveMQStreamMessageTest();
+    public static final ActiveMQStreamMessageTest SINGLETON = new ActiveMQStreamMessageTest();
 
     public Object createObject() throws Exception {
         ActiveMQStreamMessage info = new ActiveMQStreamMessage();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ActiveMQTempQueueTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ActiveMQTempQueueTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ActiveMQTempQueueTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ActiveMQTempQueueTest.java Thu Aug  9 09:37:49 2007
@@ -28,7 +28,7 @@
  */
 public class ActiveMQTempQueueTest extends ActiveMQTempDestinationTestSupport {
 
-    public static ActiveMQTempQueueTest SINGLETON = new ActiveMQTempQueueTest();
+    public static final ActiveMQTempQueueTest SINGLETON = new ActiveMQTempQueueTest();
 
     public Object createObject() throws Exception {
         ActiveMQTempQueue info = new ActiveMQTempQueue();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ActiveMQTempTopicTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ActiveMQTempTopicTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ActiveMQTempTopicTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ActiveMQTempTopicTest.java Thu Aug  9 09:37:49 2007
@@ -28,7 +28,7 @@
  */
 public class ActiveMQTempTopicTest extends ActiveMQTempDestinationTestSupport {
 
-    public static ActiveMQTempTopicTest SINGLETON = new ActiveMQTempTopicTest();
+    public static final ActiveMQTempTopicTest SINGLETON = new ActiveMQTempTopicTest();
 
     public Object createObject() throws Exception {
         ActiveMQTempTopic info = new ActiveMQTempTopic();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ActiveMQTopicTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ActiveMQTopicTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ActiveMQTopicTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ActiveMQTopicTest.java Thu Aug  9 09:37:49 2007
@@ -28,7 +28,7 @@
  */
 public class ActiveMQTopicTest extends ActiveMQDestinationTestSupport {
 
-    public static ActiveMQTopicTest SINGLETON = new ActiveMQTopicTest();
+    public static final ActiveMQTopicTest SINGLETON = new ActiveMQTopicTest();
 
     public Object createObject() throws Exception {
         ActiveMQTopic info = new ActiveMQTopic();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/BrokerIdTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/BrokerIdTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/BrokerIdTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/BrokerIdTest.java Thu Aug  9 09:37:49 2007
@@ -31,7 +31,7 @@
  */
 public class BrokerIdTest extends DataFileGeneratorTestSupport {
 
-    public static BrokerIdTest SINGLETON = new BrokerIdTest();
+    public static final BrokerIdTest SINGLETON = new BrokerIdTest();
 
     public Object createObject() throws Exception {
         BrokerId info = new BrokerId();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ConnectionControlTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ConnectionControlTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ConnectionControlTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ConnectionControlTest.java Thu Aug  9 09:37:49 2007
@@ -30,7 +30,7 @@
  */
 public class ConnectionControlTest extends BaseCommandTestSupport {
 
-    public static ConnectionControlTest SINGLETON = new ConnectionControlTest();
+    public static final ConnectionControlTest SINGLETON = new ConnectionControlTest();
 
     public Object createObject() throws Exception {
         ConnectionControl info = new ConnectionControl();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ConnectionErrorTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ConnectionErrorTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ConnectionErrorTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ConnectionErrorTest.java Thu Aug  9 09:37:49 2007
@@ -30,7 +30,7 @@
  */
 public class ConnectionErrorTest extends BaseCommandTestSupport {
 
-    public static ConnectionErrorTest SINGLETON = new ConnectionErrorTest();
+    public static final ConnectionErrorTest SINGLETON = new ConnectionErrorTest();
 
     public Object createObject() throws Exception {
         ConnectionError info = new ConnectionError();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ConnectionIdTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ConnectionIdTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ConnectionIdTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ConnectionIdTest.java Thu Aug  9 09:37:49 2007
@@ -31,7 +31,7 @@
  */
 public class ConnectionIdTest extends DataFileGeneratorTestSupport {
 
-    public static ConnectionIdTest SINGLETON = new ConnectionIdTest();
+    public static final ConnectionIdTest SINGLETON = new ConnectionIdTest();
 
     public Object createObject() throws Exception {
         ConnectionId info = new ConnectionId();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ConnectionInfoTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ConnectionInfoTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ConnectionInfoTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ConnectionInfoTest.java Thu Aug  9 09:37:49 2007
@@ -29,7 +29,7 @@
  */
 public class ConnectionInfoTest extends BaseCommandTestSupport {
 
-    public static ConnectionInfoTest SINGLETON = new ConnectionInfoTest();
+    public static final ConnectionInfoTest SINGLETON = new ConnectionInfoTest();
 
     public Object createObject() throws Exception {
         ConnectionInfo info = new ConnectionInfo();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ConsumerControlTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ConsumerControlTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ConsumerControlTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ConsumerControlTest.java Thu Aug  9 09:37:49 2007
@@ -30,7 +30,7 @@
  */
 public class ConsumerControlTest extends BaseCommandTestSupport {
 
-    public static ConsumerControlTest SINGLETON = new ConsumerControlTest();
+    public static final ConsumerControlTest SINGLETON = new ConsumerControlTest();
 
     public Object createObject() throws Exception {
         ConsumerControl info = new ConsumerControl();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ConsumerIdTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ConsumerIdTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ConsumerIdTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ConsumerIdTest.java Thu Aug  9 09:37:49 2007
@@ -31,7 +31,7 @@
  */
 public class ConsumerIdTest extends DataFileGeneratorTestSupport {
 
-    public static ConsumerIdTest SINGLETON = new ConsumerIdTest();
+    public static final ConsumerIdTest SINGLETON = new ConsumerIdTest();
 
     public Object createObject() throws Exception {
         ConsumerId info = new ConsumerId();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ConsumerInfoTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ConsumerInfoTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ConsumerInfoTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ConsumerInfoTest.java Thu Aug  9 09:37:49 2007
@@ -29,7 +29,7 @@
  */
 public class ConsumerInfoTest extends BaseCommandTestSupport {
 
-    public static ConsumerInfoTest SINGLETON = new ConsumerInfoTest();
+    public static final ConsumerInfoTest SINGLETON = new ConsumerInfoTest();
 
     public Object createObject() throws Exception {
         ConsumerInfo info = new ConsumerInfo();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ControlCommandTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ControlCommandTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ControlCommandTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ControlCommandTest.java Thu Aug  9 09:37:49 2007
@@ -30,7 +30,7 @@
  */
 public class ControlCommandTest extends BaseCommandTestSupport {
 
-    public static ControlCommandTest SINGLETON = new ControlCommandTest();
+    public static final ControlCommandTest SINGLETON = new ControlCommandTest();
 
     public Object createObject() throws Exception {
         ControlCommand info = new ControlCommand();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/DataArrayResponseTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/DataArrayResponseTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/DataArrayResponseTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/DataArrayResponseTest.java Thu Aug  9 09:37:49 2007
@@ -29,7 +29,7 @@
  */
 public class DataArrayResponseTest extends ResponseTest {
 
-    public static DataArrayResponseTest SINGLETON = new DataArrayResponseTest();
+    public static final DataArrayResponseTest SINGLETON = new DataArrayResponseTest();
 
     public Object createObject() throws Exception {
         DataArrayResponse info = new DataArrayResponse();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/DataResponseTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/DataResponseTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/DataResponseTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/DataResponseTest.java Thu Aug  9 09:37:49 2007
@@ -30,7 +30,7 @@
  */
 public class DataResponseTest extends ResponseTest {
 
-    public static DataResponseTest SINGLETON = new DataResponseTest();
+    public static final DataResponseTest SINGLETON = new DataResponseTest();
 
     public Object createObject() throws Exception {
         DataResponse info = new DataResponse();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/DestinationInfoTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/DestinationInfoTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/DestinationInfoTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/DestinationInfoTest.java Thu Aug  9 09:37:49 2007
@@ -29,7 +29,7 @@
  */
 public class DestinationInfoTest extends BaseCommandTestSupport {
 
-    public static DestinationInfoTest SINGLETON = new DestinationInfoTest();
+    public static final DestinationInfoTest SINGLETON = new DestinationInfoTest();
 
     public Object createObject() throws Exception {
         DestinationInfo info = new DestinationInfo();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/DiscoveryEventTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/DiscoveryEventTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/DiscoveryEventTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/DiscoveryEventTest.java Thu Aug  9 09:37:49 2007
@@ -31,7 +31,7 @@
  */
 public class DiscoveryEventTest extends DataFileGeneratorTestSupport {
 
-    public static DiscoveryEventTest SINGLETON = new DiscoveryEventTest();
+    public static final DiscoveryEventTest SINGLETON = new DiscoveryEventTest();
 
     public Object createObject() throws Exception {
         DiscoveryEvent info = new DiscoveryEvent();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ExceptionResponseTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ExceptionResponseTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ExceptionResponseTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ExceptionResponseTest.java Thu Aug  9 09:37:49 2007
@@ -30,7 +30,7 @@
  */
 public class ExceptionResponseTest extends ResponseTest {
 
-    public static ExceptionResponseTest SINGLETON = new ExceptionResponseTest();
+    public static final ExceptionResponseTest SINGLETON = new ExceptionResponseTest();
 
     public Object createObject() throws Exception {
         ExceptionResponse info = new ExceptionResponse();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/FlushCommandTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/FlushCommandTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/FlushCommandTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/FlushCommandTest.java Thu Aug  9 09:37:49 2007
@@ -30,7 +30,7 @@
  */
 public class FlushCommandTest extends BaseCommandTestSupport {
 
-    public static FlushCommandTest SINGLETON = new FlushCommandTest();
+    public static final FlushCommandTest SINGLETON = new FlushCommandTest();
 
     public Object createObject() throws Exception {
         FlushCommand info = new FlushCommand();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/IntegerResponseTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/IntegerResponseTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/IntegerResponseTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/IntegerResponseTest.java Thu Aug  9 09:37:49 2007
@@ -30,7 +30,7 @@
  */
 public class IntegerResponseTest extends ResponseTest {
 
-    public static IntegerResponseTest SINGLETON = new IntegerResponseTest();
+    public static final IntegerResponseTest SINGLETON = new IntegerResponseTest();
 
     public Object createObject() throws Exception {
         IntegerResponse info = new IntegerResponse();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/JournalQueueAckTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/JournalQueueAckTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/JournalQueueAckTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/JournalQueueAckTest.java Thu Aug  9 09:37:49 2007
@@ -31,7 +31,7 @@
  */
 public class JournalQueueAckTest extends DataFileGeneratorTestSupport {
 
-    public static JournalQueueAckTest SINGLETON = new JournalQueueAckTest();
+    public static final JournalQueueAckTest SINGLETON = new JournalQueueAckTest();
 
     public Object createObject() throws Exception {
         JournalQueueAck info = new JournalQueueAck();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/JournalTopicAckTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/JournalTopicAckTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/JournalTopicAckTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/JournalTopicAckTest.java Thu Aug  9 09:37:49 2007
@@ -31,7 +31,7 @@
  */
 public class JournalTopicAckTest extends DataFileGeneratorTestSupport {
 
-    public static JournalTopicAckTest SINGLETON = new JournalTopicAckTest();
+    public static final JournalTopicAckTest SINGLETON = new JournalTopicAckTest();
 
     public Object createObject() throws Exception {
         JournalTopicAck info = new JournalTopicAck();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/JournalTraceTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/JournalTraceTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/JournalTraceTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/JournalTraceTest.java Thu Aug  9 09:37:49 2007
@@ -31,7 +31,7 @@
  */
 public class JournalTraceTest extends DataFileGeneratorTestSupport {
 
-    public static JournalTraceTest SINGLETON = new JournalTraceTest();
+    public static final JournalTraceTest SINGLETON = new JournalTraceTest();
 
     public Object createObject() throws Exception {
         JournalTrace info = new JournalTrace();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/JournalTransactionTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/JournalTransactionTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/JournalTransactionTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/JournalTransactionTest.java Thu Aug  9 09:37:49 2007
@@ -31,7 +31,7 @@
  */
 public class JournalTransactionTest extends DataFileGeneratorTestSupport {
 
-    public static JournalTransactionTest SINGLETON = new JournalTransactionTest();
+    public static final JournalTransactionTest SINGLETON = new JournalTransactionTest();
 
     public Object createObject() throws Exception {
         JournalTransaction info = new JournalTransaction();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/KeepAliveInfoTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/KeepAliveInfoTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/KeepAliveInfoTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/KeepAliveInfoTest.java Thu Aug  9 09:37:49 2007
@@ -30,7 +30,7 @@
  */
 public class KeepAliveInfoTest extends BaseCommandTestSupport {
 
-    public static KeepAliveInfoTest SINGLETON = new KeepAliveInfoTest();
+    public static final KeepAliveInfoTest SINGLETON = new KeepAliveInfoTest();
 
     public Object createObject() throws Exception {
         KeepAliveInfo info = new KeepAliveInfo();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/LastPartialCommandTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/LastPartialCommandTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/LastPartialCommandTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/LastPartialCommandTest.java Thu Aug  9 09:37:49 2007
@@ -30,7 +30,7 @@
  */
 public class LastPartialCommandTest extends PartialCommandTest {
 
-    public static LastPartialCommandTest SINGLETON = new LastPartialCommandTest();
+    public static final LastPartialCommandTest SINGLETON = new LastPartialCommandTest();
 
     public Object createObject() throws Exception {
         LastPartialCommand info = new LastPartialCommand();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/LocalTransactionIdTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/LocalTransactionIdTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/LocalTransactionIdTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/LocalTransactionIdTest.java Thu Aug  9 09:37:49 2007
@@ -30,7 +30,7 @@
  */
 public class LocalTransactionIdTest extends TransactionIdTestSupport {
 
-    public static LocalTransactionIdTest SINGLETON = new LocalTransactionIdTest();
+    public static final LocalTransactionIdTest SINGLETON = new LocalTransactionIdTest();
 
     public Object createObject() throws Exception {
         LocalTransactionId info = new LocalTransactionId();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/MessageDispatchNotificationTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/MessageDispatchNotificationTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/MessageDispatchNotificationTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/MessageDispatchNotificationTest.java Thu Aug  9 09:37:49 2007
@@ -30,7 +30,7 @@
  */
 public class MessageDispatchNotificationTest extends BaseCommandTestSupport {
 
-    public static MessageDispatchNotificationTest SINGLETON = new MessageDispatchNotificationTest();
+    public static final MessageDispatchNotificationTest SINGLETON = new MessageDispatchNotificationTest();
 
     public Object createObject() throws Exception {
         MessageDispatchNotification info = new MessageDispatchNotification();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/MessageDispatchTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/MessageDispatchTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/MessageDispatchTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/MessageDispatchTest.java Thu Aug  9 09:37:49 2007
@@ -30,7 +30,7 @@
  */
 public class MessageDispatchTest extends BaseCommandTestSupport {
 
-    public static MessageDispatchTest SINGLETON = new MessageDispatchTest();
+    public static final MessageDispatchTest SINGLETON = new MessageDispatchTest();
 
     public Object createObject() throws Exception {
         MessageDispatch info = new MessageDispatch();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/MessageIdTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/MessageIdTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/MessageIdTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/MessageIdTest.java Thu Aug  9 09:37:49 2007
@@ -31,7 +31,7 @@
  */
 public class MessageIdTest extends DataFileGeneratorTestSupport {
 
-    public static MessageIdTest SINGLETON = new MessageIdTest();
+    public static final MessageIdTest SINGLETON = new MessageIdTest();
 
     public Object createObject() throws Exception {
         MessageId info = new MessageId();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/NetworkBridgeFilterTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/NetworkBridgeFilterTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/NetworkBridgeFilterTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/NetworkBridgeFilterTest.java Thu Aug  9 09:37:49 2007
@@ -31,7 +31,7 @@
  */
 public class NetworkBridgeFilterTest extends DataFileGeneratorTestSupport {
 
-    public static NetworkBridgeFilterTest SINGLETON = new NetworkBridgeFilterTest();
+    public static final NetworkBridgeFilterTest SINGLETON = new NetworkBridgeFilterTest();
 
     public Object createObject() throws Exception {
         NetworkBridgeFilter info = new NetworkBridgeFilter();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/PartialCommandTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/PartialCommandTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/PartialCommandTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/PartialCommandTest.java Thu Aug  9 09:37:49 2007
@@ -31,7 +31,7 @@
  */
 public class PartialCommandTest extends DataFileGeneratorTestSupport {
 
-    public static PartialCommandTest SINGLETON = new PartialCommandTest();
+    public static final PartialCommandTest SINGLETON = new PartialCommandTest();
 
     public Object createObject() throws Exception {
         PartialCommand info = new PartialCommand();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ProducerIdTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ProducerIdTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ProducerIdTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ProducerIdTest.java Thu Aug  9 09:37:49 2007
@@ -31,7 +31,7 @@
  */
 public class ProducerIdTest extends DataFileGeneratorTestSupport {
 
-    public static ProducerIdTest SINGLETON = new ProducerIdTest();
+    public static final ProducerIdTest SINGLETON = new ProducerIdTest();
 
     public Object createObject() throws Exception {
         ProducerId info = new ProducerId();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ProducerInfoTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ProducerInfoTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ProducerInfoTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ProducerInfoTest.java Thu Aug  9 09:37:49 2007
@@ -29,7 +29,7 @@
  */
 public class ProducerInfoTest extends BaseCommandTestSupport {
 
-    public static ProducerInfoTest SINGLETON = new ProducerInfoTest();
+    public static final ProducerInfoTest SINGLETON = new ProducerInfoTest();
 
     public Object createObject() throws Exception {
         ProducerInfo info = new ProducerInfo();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/RemoveInfoTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/RemoveInfoTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/RemoveInfoTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/RemoveInfoTest.java Thu Aug  9 09:37:49 2007
@@ -30,7 +30,7 @@
  */
 public class RemoveInfoTest extends BaseCommandTestSupport {
 
-    public static RemoveInfoTest SINGLETON = new RemoveInfoTest();
+    public static final RemoveInfoTest SINGLETON = new RemoveInfoTest();
 
     public Object createObject() throws Exception {
         RemoveInfo info = new RemoveInfo();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/RemoveSubscriptionInfoTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/RemoveSubscriptionInfoTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/RemoveSubscriptionInfoTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/RemoveSubscriptionInfoTest.java Thu Aug  9 09:37:49 2007
@@ -30,7 +30,7 @@
  */
 public class RemoveSubscriptionInfoTest extends BaseCommandTestSupport {
 
-    public static RemoveSubscriptionInfoTest SINGLETON = new RemoveSubscriptionInfoTest();
+    public static final RemoveSubscriptionInfoTest SINGLETON = new RemoveSubscriptionInfoTest();
 
     public Object createObject() throws Exception {
         RemoveSubscriptionInfo info = new RemoveSubscriptionInfo();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ReplayCommandTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ReplayCommandTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ReplayCommandTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ReplayCommandTest.java Thu Aug  9 09:37:49 2007
@@ -30,7 +30,7 @@
  */
 public class ReplayCommandTest extends BaseCommandTestSupport {
 
-    public static ReplayCommandTest SINGLETON = new ReplayCommandTest();
+    public static final ReplayCommandTest SINGLETON = new ReplayCommandTest();
 
     public Object createObject() throws Exception {
         ReplayCommand info = new ReplayCommand();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ResponseTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ResponseTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ResponseTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ResponseTest.java Thu Aug  9 09:37:49 2007
@@ -30,7 +30,7 @@
  */
 public class ResponseTest extends BaseCommandTestSupport {
 
-    public static ResponseTest SINGLETON = new ResponseTest();
+    public static final ResponseTest SINGLETON = new ResponseTest();
 
     public Object createObject() throws Exception {
         Response info = new Response();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/SessionIdTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/SessionIdTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/SessionIdTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/SessionIdTest.java Thu Aug  9 09:37:49 2007
@@ -31,7 +31,7 @@
  */
 public class SessionIdTest extends DataFileGeneratorTestSupport {
 
-    public static SessionIdTest SINGLETON = new SessionIdTest();
+    public static final SessionIdTest SINGLETON = new SessionIdTest();
 
     public Object createObject() throws Exception {
         SessionId info = new SessionId();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/SessionInfoTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/SessionInfoTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/SessionInfoTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/SessionInfoTest.java Thu Aug  9 09:37:49 2007
@@ -30,7 +30,7 @@
  */
 public class SessionInfoTest extends BaseCommandTestSupport {
 
-    public static SessionInfoTest SINGLETON = new SessionInfoTest();
+    public static final SessionInfoTest SINGLETON = new SessionInfoTest();
 
     public Object createObject() throws Exception {
         SessionInfo info = new SessionInfo();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ShutdownInfoTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ShutdownInfoTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ShutdownInfoTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/ShutdownInfoTest.java Thu Aug  9 09:37:49 2007
@@ -30,7 +30,7 @@
  */
 public class ShutdownInfoTest extends BaseCommandTestSupport {
 
-    public static ShutdownInfoTest SINGLETON = new ShutdownInfoTest();
+    public static final ShutdownInfoTest SINGLETON = new ShutdownInfoTest();
 
     public Object createObject() throws Exception {
         ShutdownInfo info = new ShutdownInfo();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/SubscriptionInfoTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/SubscriptionInfoTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/SubscriptionInfoTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/SubscriptionInfoTest.java Thu Aug  9 09:37:49 2007
@@ -31,7 +31,7 @@
  */
 public class SubscriptionInfoTest extends DataFileGeneratorTestSupport {
 
-    public static SubscriptionInfoTest SINGLETON = new SubscriptionInfoTest();
+    public static final SubscriptionInfoTest SINGLETON = new SubscriptionInfoTest();
 
     public Object createObject() throws Exception {
         SubscriptionInfo info = new SubscriptionInfo();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/TransactionInfoTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/TransactionInfoTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/TransactionInfoTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/TransactionInfoTest.java Thu Aug  9 09:37:49 2007
@@ -30,7 +30,7 @@
  */
 public class TransactionInfoTest extends BaseCommandTestSupport {
 
-    public static TransactionInfoTest SINGLETON = new TransactionInfoTest();
+    public static final TransactionInfoTest SINGLETON = new TransactionInfoTest();
 
     public Object createObject() throws Exception {
         TransactionInfo info = new TransactionInfo();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/WireFormatInfoTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/WireFormatInfoTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/WireFormatInfoTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/WireFormatInfoTest.java Thu Aug  9 09:37:49 2007
@@ -29,7 +29,7 @@
  */
 public class WireFormatInfoTest extends DataFileGeneratorTestSupport {
 
-    public static WireFormatInfoTest SINGLETON = new WireFormatInfoTest();
+    public static final WireFormatInfoTest SINGLETON = new WireFormatInfoTest();
 
     public Object createObject() throws Exception {
         WireFormatInfo info = new WireFormatInfo();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/XATransactionIdTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/XATransactionIdTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/XATransactionIdTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v1/XATransactionIdTest.java Thu Aug  9 09:37:49 2007
@@ -30,7 +30,7 @@
  */
 public class XATransactionIdTest extends TransactionIdTestSupport {
 
-    public static XATransactionIdTest SINGLETON = new XATransactionIdTest();
+    public static final XATransactionIdTest SINGLETON = new XATransactionIdTest();
 
     public Object createObject() throws Exception {
         XATransactionId info = new XATransactionId();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ActiveMQBytesMessageTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ActiveMQBytesMessageTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ActiveMQBytesMessageTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ActiveMQBytesMessageTest.java Thu Aug  9 09:37:49 2007
@@ -30,7 +30,7 @@
  */
 public class ActiveMQBytesMessageTest extends ActiveMQMessageTest {
 
-    public static ActiveMQBytesMessageTest SINGLETON = new ActiveMQBytesMessageTest();
+    public static final ActiveMQBytesMessageTest SINGLETON = new ActiveMQBytesMessageTest();
 
     public Object createObject() throws Exception {
         ActiveMQBytesMessage info = new ActiveMQBytesMessage();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ActiveMQMapMessageTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ActiveMQMapMessageTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ActiveMQMapMessageTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ActiveMQMapMessageTest.java Thu Aug  9 09:37:49 2007
@@ -30,7 +30,7 @@
  */
 public class ActiveMQMapMessageTest extends ActiveMQMessageTest {
 
-    public static ActiveMQMapMessageTest SINGLETON = new ActiveMQMapMessageTest();
+    public static final ActiveMQMapMessageTest SINGLETON = new ActiveMQMapMessageTest();
 
     public Object createObject() throws Exception {
         ActiveMQMapMessage info = new ActiveMQMapMessage();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ActiveMQMessageTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ActiveMQMessageTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ActiveMQMessageTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ActiveMQMessageTest.java Thu Aug  9 09:37:49 2007
@@ -30,7 +30,7 @@
  */
 public class ActiveMQMessageTest extends MessageTestSupport {
 
-    public static ActiveMQMessageTest SINGLETON = new ActiveMQMessageTest();
+    public static final ActiveMQMessageTest SINGLETON = new ActiveMQMessageTest();
 
     public Object createObject() throws Exception {
         ActiveMQMessage info = new ActiveMQMessage();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ActiveMQObjectMessageTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ActiveMQObjectMessageTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ActiveMQObjectMessageTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ActiveMQObjectMessageTest.java Thu Aug  9 09:37:49 2007
@@ -30,7 +30,7 @@
  */
 public class ActiveMQObjectMessageTest extends ActiveMQMessageTest {
 
-    public static ActiveMQObjectMessageTest SINGLETON = new ActiveMQObjectMessageTest();
+    public static final ActiveMQObjectMessageTest SINGLETON = new ActiveMQObjectMessageTest();
 
     public Object createObject() throws Exception {
         ActiveMQObjectMessage info = new ActiveMQObjectMessage();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ActiveMQQueueTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ActiveMQQueueTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ActiveMQQueueTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ActiveMQQueueTest.java Thu Aug  9 09:37:49 2007
@@ -30,7 +30,7 @@
  */
 public class ActiveMQQueueTest extends ActiveMQDestinationTestSupport {
 
-    public static ActiveMQQueueTest SINGLETON = new ActiveMQQueueTest();
+    public static final ActiveMQQueueTest SINGLETON = new ActiveMQQueueTest();
 
     public Object createObject() throws Exception {
         ActiveMQQueue info = new ActiveMQQueue();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ActiveMQStreamMessageTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ActiveMQStreamMessageTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ActiveMQStreamMessageTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ActiveMQStreamMessageTest.java Thu Aug  9 09:37:49 2007
@@ -30,7 +30,7 @@
  */
 public class ActiveMQStreamMessageTest extends ActiveMQMessageTest {
 
-    public static ActiveMQStreamMessageTest SINGLETON = new ActiveMQStreamMessageTest();
+    public static final ActiveMQStreamMessageTest SINGLETON = new ActiveMQStreamMessageTest();
 
     public Object createObject() throws Exception {
         ActiveMQStreamMessage info = new ActiveMQStreamMessage();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ActiveMQTempQueueTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ActiveMQTempQueueTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ActiveMQTempQueueTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ActiveMQTempQueueTest.java Thu Aug  9 09:37:49 2007
@@ -30,7 +30,7 @@
  */
 public class ActiveMQTempQueueTest extends ActiveMQTempDestinationTestSupport {
 
-    public static ActiveMQTempQueueTest SINGLETON = new ActiveMQTempQueueTest();
+    public static final ActiveMQTempQueueTest SINGLETON = new ActiveMQTempQueueTest();
 
     public Object createObject() throws Exception {
         ActiveMQTempQueue info = new ActiveMQTempQueue();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ActiveMQTempTopicTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ActiveMQTempTopicTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ActiveMQTempTopicTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ActiveMQTempTopicTest.java Thu Aug  9 09:37:49 2007
@@ -30,7 +30,7 @@
  */
 public class ActiveMQTempTopicTest extends ActiveMQTempDestinationTestSupport {
 
-    public static ActiveMQTempTopicTest SINGLETON = new ActiveMQTempTopicTest();
+    public static final ActiveMQTempTopicTest SINGLETON = new ActiveMQTempTopicTest();
 
     public Object createObject() throws Exception {
         ActiveMQTempTopic info = new ActiveMQTempTopic();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ActiveMQTextMessageTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ActiveMQTextMessageTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ActiveMQTextMessageTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ActiveMQTextMessageTest.java Thu Aug  9 09:37:49 2007
@@ -30,7 +30,7 @@
  */
 public class ActiveMQTextMessageTest extends ActiveMQMessageTest {
 
-    public static ActiveMQTextMessageTest SINGLETON = new ActiveMQTextMessageTest();
+    public static final ActiveMQTextMessageTest SINGLETON = new ActiveMQTextMessageTest();
 
     public Object createObject() throws Exception {
         ActiveMQTextMessage info = new ActiveMQTextMessage();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ActiveMQTopicTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ActiveMQTopicTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ActiveMQTopicTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ActiveMQTopicTest.java Thu Aug  9 09:37:49 2007
@@ -30,7 +30,7 @@
  */
 public class ActiveMQTopicTest extends ActiveMQDestinationTestSupport {
 
-    public static ActiveMQTopicTest SINGLETON = new ActiveMQTopicTest();
+    public static final ActiveMQTopicTest SINGLETON = new ActiveMQTopicTest();
 
     public Object createObject() throws Exception {
         ActiveMQTopic info = new ActiveMQTopic();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/BrokerIdTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/BrokerIdTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/BrokerIdTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/BrokerIdTest.java Thu Aug  9 09:37:49 2007
@@ -34,7 +34,7 @@
 public class BrokerIdTest extends DataFileGeneratorTestSupport {
 
 
-    public static BrokerIdTest SINGLETON = new BrokerIdTest();
+    public static final BrokerIdTest SINGLETON = new BrokerIdTest();
 
     public Object createObject() throws Exception {
         BrokerId info = new BrokerId();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/BrokerInfoTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/BrokerInfoTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/BrokerInfoTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/BrokerInfoTest.java Thu Aug  9 09:37:49 2007
@@ -28,7 +28,7 @@
  */
 public class BrokerInfoTest extends BaseCommandTestSupport {
 
-    public static BrokerInfoTest SINGLETON = new BrokerInfoTest();
+    public static final BrokerInfoTest SINGLETON = new BrokerInfoTest();
 
     public Object createObject() throws Exception {
         BrokerInfo info = new BrokerInfo();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ConnectionControlTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ConnectionControlTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ConnectionControlTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ConnectionControlTest.java Thu Aug  9 09:37:49 2007
@@ -33,7 +33,7 @@
 public class ConnectionControlTest extends BaseCommandTestSupport {
 
 
-    public static ConnectionControlTest SINGLETON = new ConnectionControlTest();
+    public static final ConnectionControlTest SINGLETON = new ConnectionControlTest();
 
     public Object createObject() throws Exception {
         ConnectionControl info = new ConnectionControl();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ConnectionErrorTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ConnectionErrorTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ConnectionErrorTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ConnectionErrorTest.java Thu Aug  9 09:37:49 2007
@@ -33,7 +33,7 @@
 public class ConnectionErrorTest extends BaseCommandTestSupport {
 
 
-    public static ConnectionErrorTest SINGLETON = new ConnectionErrorTest();
+    public static final ConnectionErrorTest SINGLETON = new ConnectionErrorTest();
 
     public Object createObject() throws Exception {
         ConnectionError info = new ConnectionError();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ConnectionIdTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ConnectionIdTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ConnectionIdTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ConnectionIdTest.java Thu Aug  9 09:37:49 2007
@@ -34,7 +34,7 @@
 public class ConnectionIdTest extends DataFileGeneratorTestSupport {
 
 
-    public static ConnectionIdTest SINGLETON = new ConnectionIdTest();
+    public static final ConnectionIdTest SINGLETON = new ConnectionIdTest();
 
     public Object createObject() throws Exception {
         ConnectionId info = new ConnectionId();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ConnectionInfoTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ConnectionInfoTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ConnectionInfoTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ConnectionInfoTest.java Thu Aug  9 09:37:49 2007
@@ -29,7 +29,7 @@
  */
 public class ConnectionInfoTest extends BaseCommandTestSupport {
 
-    public static ConnectionInfoTest SINGLETON = new ConnectionInfoTest();
+    public static final ConnectionInfoTest SINGLETON = new ConnectionInfoTest();
 
     public Object createObject() throws Exception {
         ConnectionInfo info = new ConnectionInfo();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ConsumerControlTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ConsumerControlTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ConsumerControlTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ConsumerControlTest.java Thu Aug  9 09:37:49 2007
@@ -33,7 +33,7 @@
 public class ConsumerControlTest extends BaseCommandTestSupport {
 
 
-    public static ConsumerControlTest SINGLETON = new ConsumerControlTest();
+    public static final ConsumerControlTest SINGLETON = new ConsumerControlTest();
 
     public Object createObject() throws Exception {
         ConsumerControl info = new ConsumerControl();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ConsumerIdTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ConsumerIdTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ConsumerIdTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ConsumerIdTest.java Thu Aug  9 09:37:49 2007
@@ -34,7 +34,7 @@
 public class ConsumerIdTest extends DataFileGeneratorTestSupport {
 
 
-    public static ConsumerIdTest SINGLETON = new ConsumerIdTest();
+    public static final ConsumerIdTest SINGLETON = new ConsumerIdTest();
 
     public Object createObject() throws Exception {
         ConsumerId info = new ConsumerId();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ConsumerInfoTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ConsumerInfoTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ConsumerInfoTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ConsumerInfoTest.java Thu Aug  9 09:37:49 2007
@@ -29,7 +29,7 @@
  */
 public class ConsumerInfoTest extends BaseCommandTestSupport {
 
-    public static ConsumerInfoTest SINGLETON = new ConsumerInfoTest();
+    public static final ConsumerInfoTest SINGLETON = new ConsumerInfoTest();
 
     public Object createObject() throws Exception {
         ConsumerInfo info = new ConsumerInfo();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ControlCommandTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ControlCommandTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ControlCommandTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/ControlCommandTest.java Thu Aug  9 09:37:49 2007
@@ -33,7 +33,7 @@
 public class ControlCommandTest extends BaseCommandTestSupport {
 
 
-    public static ControlCommandTest SINGLETON = new ControlCommandTest();
+    public static final ControlCommandTest SINGLETON = new ControlCommandTest();
 
     public Object createObject() throws Exception {
         ControlCommand info = new ControlCommand();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/DataArrayResponseTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/DataArrayResponseTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/DataArrayResponseTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/DataArrayResponseTest.java Thu Aug  9 09:37:49 2007
@@ -29,7 +29,7 @@
  */
 public class DataArrayResponseTest extends ResponseTest {
 
-    public static DataArrayResponseTest SINGLETON = new DataArrayResponseTest();
+    public static final DataArrayResponseTest SINGLETON = new DataArrayResponseTest();
 
     public Object createObject() throws Exception {
         DataArrayResponse info = new DataArrayResponse();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/DataResponseTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/DataResponseTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/DataResponseTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/DataResponseTest.java Thu Aug  9 09:37:49 2007
@@ -33,7 +33,7 @@
 public class DataResponseTest extends ResponseTest {
 
 
-    public static DataResponseTest SINGLETON = new DataResponseTest();
+    public static final DataResponseTest SINGLETON = new DataResponseTest();
 
     public Object createObject() throws Exception {
         DataResponse info = new DataResponse();

Modified: activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/DestinationInfoTest.java
URL: http://svn.apache.org/viewvc/activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/DestinationInfoTest.java?view=diff&rev=564271&r1=564270&r2=564271
==============================================================================
--- activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/DestinationInfoTest.java (original)
+++ activemq/trunk/activemq-core/src/test/java/org/apache/activemq/openwire/v2/DestinationInfoTest.java Thu Aug  9 09:37:49 2007
@@ -29,7 +29,7 @@
  */
 public class DestinationInfoTest extends BaseCommandTestSupport {
 
-    public static DestinationInfoTest SINGLETON = new DestinationInfoTest();
+    public static final DestinationInfoTest SINGLETON = new DestinationInfoTest();
 
     public Object createObject() throws Exception {
         DestinationInfo info = new DestinationInfo();