improve instruction for new web services
authorSasha Sherstnev <a.sherstnev@dundee.ac.uk>
Fri, 9 Aug 2013 09:15:35 +0000 (10:15 +0100)
committerSasha Sherstnev <a.sherstnev@dundee.ac.uk>
Fri, 9 Aug 2013 09:18:02 +0000 (10:18 +0100)
how_to_add_new_webservice.txt

index ae868fc..5825767 100644 (file)
@@ -39,6 +39,9 @@ How To add a new executable.
 \r
 9) Test the parser\r
 \r
+\r
+###################################################################################################\r
+\r
 10) Decide which web services interface your executable is going to match. \r
     For example if the executable output can be represented as \r
     SequenceAnnotation then SequenceAnnotation interface might be appropriate. \r
@@ -59,8 +62,7 @@ How To add a new executable.
     - you do not have interfaces to serialize. JAXB cannot serialize them.\r
     - you have a default no args constructor (can be private if you do not need it)\r
     - JAXB cannot serialize a Map, use custom data structure instead!\r
-    - Enum cannot be serialized as its abstract class (do not confuse with enum \r
-      which is fine)\r
+    - Enum cannot be serialized as its abstract class (do not confuse with enum which is fine)\r
     - Fields serialization leave a little more space for manoeuvre, so use it. If \r
       you do then you can accept and return interfaces, e.g. List, Map; abstract \r
       classes etc, from your methods. \r