diff --git a/ch.psi.fda/pom.xml b/ch.psi.fda/pom.xml index 4f26969..8df2130 100644 --- a/ch.psi.fda/pom.xml +++ b/ch.psi.fda/pom.xml @@ -3,7 +3,7 @@ 4.0.0 ch.psi fda - 2.3.1 + 2.4.1 @@ -29,13 +29,13 @@ ch.psi.fda.fdaq 2.3.0 - + ch.psi jcae 2.4.1 - + ch.psi plot @@ -77,7 +77,7 @@ cli 1.2 - + com.jmatio @@ -90,7 +90,7 @@ freehep-xdr 2.0.4 - + junit junit @@ -110,10 +110,24 @@ 1.7 + + org.apache.maven.plugins + maven-javadoc-plugin + + -Xdoclint:none + + + + attach-javadocs + + jar + + + + org.apache.maven.plugins maven-source-plugin - 2.1.2 attach-sources @@ -130,12 +144,12 @@ i.snapshots Artifactory Snapshots - http://yoke/artifactory/libs-snapshots-local + http://yoke.psi.ch/artifactory/libs-snapshots-local i.releases Atrifactory Releases - http://yoke/artifactory/libs-releases-local + http://yoke.psi.ch/artifactory/libs-releases-local \ No newline at end of file diff --git a/ch.psi.fda/src/main/java/ch/psi/fda/deserializer/DataDeserializerTXT.java b/ch.psi.fda/src/main/java/ch/psi/fda/deserializer/DataDeserializerTXT.java index 62aa3c5..cf28f9c 100644 --- a/ch.psi.fda/src/main/java/ch/psi/fda/deserializer/DataDeserializerTXT.java +++ b/ch.psi.fda/src/main/java/ch/psi/fda/deserializer/DataDeserializerTXT.java @@ -48,10 +48,6 @@ public class DataDeserializerTXT implements DataDeserializer { private List dindex; private List iindex; - /** - * Default Constructor - * @param file - */ public DataDeserializerTXT(EventBus b, File file){ this.bus = b; this.file = file; diff --git a/ch.psi.fda/src/main/java/ch/psi/fda/rest/ExecutionEngine.java b/ch.psi.fda/src/main/java/ch/psi/fda/rest/ExecutionEngine.java index ee56621..4e5fa26 100644 --- a/ch.psi.fda/src/main/java/ch/psi/fda/rest/ExecutionEngine.java +++ b/ch.psi.fda/src/main/java/ch/psi/fda/rest/ExecutionEngine.java @@ -61,8 +61,8 @@ public class ExecutionEngine { * Submit a scan to be executed. This will generate an execution request which is * enqueued in the execution queue. * - * @param edescriptor - * @return + * @param trackingId Tracking id + * @param edescriptor Edescriptor */ public void submit(String trackingId, EDescriptor edescriptor){ @@ -95,7 +95,7 @@ public class ExecutionEngine { * Terminate the request which is identified by its tracking id. If the request * is still in the execution queue it gets removed there. * - * @param trackingId + * @param trackingId Tracking ID */ public void terminate(String trackingId){ logger.info("Terminate TrackingId: "+trackingId); @@ -132,9 +132,9 @@ public class ExecutionEngine { /** * Wait for the termination of the scan request - * @param trackingId - * @throws ExecutionException - * @throws InterruptedException + * @param trackingId Tracking ID + * @throws ExecutionException - + * @throws InterruptedException - */ public void wait(String trackingId) throws InterruptedException, ExecutionException{ logger.info("Waiting for termination for trackingId "+trackingId);