Index: /trunk/autoquest-plugin-http-test/src/test/java/de/ugoe/cs/autoquest/http/SOAPUtilsTest.java
===================================================================
--- /trunk/autoquest-plugin-http-test/src/test/java/de/ugoe/cs/autoquest/http/SOAPUtilsTest.java	(revision 1986)
+++ /trunk/autoquest-plugin-http-test/src/test/java/de/ugoe/cs/autoquest/http/SOAPUtilsTest.java	(revision 1987)
@@ -38,44 +38,45 @@
  */
 public class SOAPUtilsTest {
-    
+
     @Test
     public void testConvertToSimpleSOAPEvent_1() throws Exception {
         HTTPLogParser parser =
-                new HTTPLogParser(new File(ClassLoader
-                    .getSystemResource("testParseFile_3_properties.txt").getFile()));
-            parser.parseFile(new File(ClassLoader.getSystemResource("testParseFile_3_logfile.log")
-                .getFile()));
-            Collection<List<Event>> events = parser.getSequences();
+            new HTTPLogParser(new File(ClassLoader
+                .getSystemResource("testParseFile_3_properties.txt").getFile()));
+        parser.parseFile(new File(ClassLoader.getSystemResource("testParseFile_3_logfile.log")
+            .getFile()));
+        Collection<List<Event>> events = parser.getSequences();
 
-            assertNotNull(events);
-            assertEquals(1, events.size());
+        assertNotNull(events);
+        assertEquals(1, events.size());
 
-            List<Event> sequence = events.iterator().next();
-            
-            List<Event> newSequence = SOAPUtils.convertToSimpleSOAPEvent(sequence, false);
-            
-            assertNotNull(newSequence);
-            assertEquals(sequence.size(), newSequence.size());
-            
-            Iterator<Event> oldSeqIter = sequence.iterator();
-            Iterator<Event> newSeqIter = newSequence.iterator();
-            
-            while(oldSeqIter.hasNext()) {
-                Event oldEvent = oldSeqIter.next();
-                Event newEvent = newSeqIter.next();
-                
-                if( oldEvent.getType() instanceof SOAPEventType ) {
-                    assertTrue(newEvent.getType() instanceof SimpleSOAPEventType);
-                    SOAPEventType oldEventType = (SOAPEventType) oldEvent.getType();
-                    SimpleSOAPEventType newEventType = (SimpleSOAPEventType) newEvent.getType();
-                    assertEquals(oldEventType.getCalledMethod(), newEventType.getCalledMethod());
-                    assertEquals(oldEventType.getServiceName(), newEventType.getServiceName());
-                    assertEquals(oldEventType.getClientName(), newEventType.getClientName());
-                    assertNull(newEvent.getTarget());
-                } else {
-                    assertSame(oldEvent, newEvent);
-                }
+        List<Event> sequence = events.iterator().next();
+
+        List<Event> newSequence = SOAPUtils.convertToSimpleSOAPEvent(sequence, false);
+
+        assertNotNull(newSequence);
+        assertEquals(sequence.size(), newSequence.size());
+
+        Iterator<Event> oldSeqIter = sequence.iterator();
+        Iterator<Event> newSeqIter = newSequence.iterator();
+
+        while (oldSeqIter.hasNext()) {
+            Event oldEvent = oldSeqIter.next();
+            Event newEvent = newSeqIter.next();
+
+            if (oldEvent.getType() instanceof SOAPEventType) {
+                assertTrue(newEvent.getType() instanceof SimpleSOAPEventType);
+                SOAPEventType oldEventType = (SOAPEventType) oldEvent.getType();
+                SimpleSOAPEventType newEventType = (SimpleSOAPEventType) newEvent.getType();
+                assertEquals(oldEventType.getCalledMethod(), newEventType.getCalledMethod());
+                assertEquals(oldEventType.getServiceName(), newEventType.getServiceName());
+                assertEquals(oldEventType.getClientName(), newEventType.getClientName());
+                assertNull(newEvent.getTarget());
             }
-            
+            else {
+                assertSame(oldEvent, newEvent);
+            }
+        }
+
     }
 
Index: /trunk/autoquest-plugin-http-test/src/test/java/de/ugoe/cs/autoquest/http/eventcore/EqualSOAPDataMapTest.java
===================================================================
--- /trunk/autoquest-plugin-http-test/src/test/java/de/ugoe/cs/autoquest/http/eventcore/EqualSOAPDataMapTest.java	(revision 1986)
+++ /trunk/autoquest-plugin-http-test/src/test/java/de/ugoe/cs/autoquest/http/eventcore/EqualSOAPDataMapTest.java	(revision 1987)
@@ -52,15 +52,16 @@
         parser.parseFile(new File(ClassLoader.getSystemResource("testParseFile_3_logfile.log")
             .getFile()));
-        for( List<Event> sequence : parser.getSequences() ) {
+        for (List<Event> sequence : parser.getSequences()) {
             SOAPUtils.convertToSimpleSOAPEvent(sequence, true);
         }
-        
-        Field privateStringField = EqualSOAPDataMap.class.
-                    getDeclaredField("soapRequestBodies");
+
+        Field privateStringField = EqualSOAPDataMap.class.getDeclaredField("soapRequestBodies");
 
         privateStringField.setAccessible(true);
 
-        Map<SimpleSOAPEventType, ListOrderedSet<String>> internalMapExpected = (Map<SimpleSOAPEventType, ListOrderedSet<String>>) privateStringField.get(EqualSOAPDataMap.getInstance());
-        
+        Map<SimpleSOAPEventType, ListOrderedSet<String>> internalMapExpected =
+            (Map<SimpleSOAPEventType, ListOrderedSet<String>>) privateStringField
+                .get(EqualSOAPDataMap.getInstance());
+
         // serialize
         ByteArrayOutputStream out = new ByteArrayOutputStream();
@@ -70,5 +71,5 @@
 
         EqualSOAPDataMap.getInstance().reset();
-        
+
         // deserialize
         byte[] pickled = out.toByteArray();
@@ -77,7 +78,9 @@
         ois.readObject();
         ois.close();
-        
-        Map<SimpleSOAPEventType, ListOrderedSet<String>> internalMapResult = (Map<SimpleSOAPEventType, ListOrderedSet<String>>) privateStringField.get(EqualSOAPDataMap.getInstance());
-        
+
+        Map<SimpleSOAPEventType, ListOrderedSet<String>> internalMapResult =
+            (Map<SimpleSOAPEventType, ListOrderedSet<String>>) privateStringField
+                .get(EqualSOAPDataMap.getInstance());
+
         assertNotSame(internalMapExpected, internalMapResult);
         assertEquals(internalMapExpected, internalMapResult);
Index: /trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/eventcore/SimpleSOAPEventType.java
===================================================================
--- /trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/eventcore/SimpleSOAPEventType.java	(revision 1986)
+++ /trunk/autoquest-plugin-http/src/main/java/de/ugoe/cs/autoquest/plugin/http/eventcore/SimpleSOAPEventType.java	(revision 1987)
@@ -40,5 +40,5 @@
     /**  */
     private static final long serialVersionUID = 1L;
-    
+
     /**
      * see {@link RequestBodyMode}
@@ -137,7 +137,8 @@
     /**
      * <p>
-     * returns the body of the SOAP request; how the body is determined is defined by the {@link RequestBodyMode}. 
-     * </p>
-     *
+     * returns the body of the SOAP request; how the body is determined is defined by the
+     * {@link RequestBodyMode}.
+     * </p>
+     * 
      * @return body of the SOAP request
      */
@@ -155,5 +156,5 @@
                 throw new RuntimeException("undefined RequestBodyMode");
         }
-        if( requestBody==null ) {
+        if (requestBody == null) {
             System.err.println("foobar" + this);
             System.err.println(EqualSOAPDataMap.getInstance().getAll(this));
@@ -167,6 +168,4 @@
         }
     }
-    
-    
 
     /*
@@ -220,10 +219,10 @@
         return "SimpleSOAPEventType(" + serviceName + ", " + calledMethod + ")";
     }
-    
+
     /**
      * <p>
      * returns the current {@link RequestBodyMode}
      * </p>
-     *
+     * 
      * @return the requestBodyMode
      */
@@ -231,10 +230,10 @@
         return requestBodyMode;
     }
-    
+
     /**
      * <p>
      * sets the {@link RequestBodyMode}
      * </p>
-     *
+     * 
      * @param new requestBodyMode
      */
@@ -242,5 +241,5 @@
         SimpleSOAPEventType.requestBodyMode = requestBodyMode;
     }
-    
+
     /**
      * <p>
@@ -248,10 +247,13 @@
      * <ul>
      * <li>LOCALEVENT: returns the request body of the event type itself</li>
-     * <li>RANDOM: returns a randomly draw request body for the called method using {@link EqualSOAPDataMap#getRandom(SimpleSOAPEventType)}.
-     * </ul> 
+     * <li>RANDOM: returns a randomly draw request body for the called method using
+     * {@link EqualSOAPDataMap#getRandom(SimpleSOAPEventType)}.
+     * </ul>
      * </p>
      * 
      * @author Steffen Herbold
      */
-    public static enum RequestBodyMode {LOCALEVENT, RANDOM}
+    public static enum RequestBodyMode {
+        LOCALEVENT, RANDOM
+    }
 }
