From a959db1f8670ffcde145ac577fca5ab9844ce4b4 Mon Sep 17 00:00:00 2001
From: gmantele <gmantele@ari.uni-heidelberg.de>
Date: Fri, 2 Mar 2018 15:38:44 +0100
Subject: [PATCH] [UWS] Fix Javadoc

---
 src/uws/job/JobList.java                          | 6 +++---
 src/uws/job/serializer/UWSSerializer.java         | 4 ++--
 src/uws/job/serializer/filter/JobFilter.java      | 4 ++--
 src/uws/job/serializer/filter/JobListRefiner.java | 4 ++--
 4 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/src/uws/job/JobList.java b/src/uws/job/JobList.java
index a19c135..3f1d27d 100644
--- a/src/uws/job/JobList.java
+++ b/src/uws/job/JobList.java
@@ -16,7 +16,7 @@ package uws.job;
  * You should have received a copy of the GNU Lesser General Public License
  * along with UWSLibrary.  If not, see <http://www.gnu.org/licenses/>.
  *
- * Copyright 2012-2017 - UDS/Centre de Données astronomiques de Strasbourg (CDS),
+ * Copyright 2012-2018 - UDS/Centre de Données astronomiques de Strasbourg (CDS),
  *                       Astronomisches Rechen Institut (ARI)
  */
 
@@ -1006,13 +1006,13 @@ public class JobList extends SerializableUWSObject implements Iterable<UWSJob> {
 
 	/**
 	 * Serializes the while object in the given output stream,
-	 * considering the given owner ID, the given job filters and thanks to the
+	 * considering the given owner, the given job filters and thanks to the
 	 * given serializer.
 	 *
 	 * @param output		The ouput stream in which this object must be
 	 *              		serialized.
 	 * @param serializer	The serializer to use.
-	 * @param ownerId		The ID of the current ID.
+	 * @param owner			The current user.
 	 * @param listRefiner	Special filter able to refine the list of jobs with
 	 *                   	job filters specified by the user
 	 *                   	(i.e. filter, sort and limit).
diff --git a/src/uws/job/serializer/UWSSerializer.java b/src/uws/job/serializer/UWSSerializer.java
index bd7141d..31fa507 100644
--- a/src/uws/job/serializer/UWSSerializer.java
+++ b/src/uws/job/serializer/UWSSerializer.java
@@ -16,7 +16,7 @@ package uws.job.serializer;
  * You should have received a copy of the GNU Lesser General Public License
  * along with UWSLibrary.  If not, see <http://www.gnu.org/licenses/>.
  *
- * Copyright 2012-2017 - UDS/Centre de Données astronomiques de Strasbourg (CDS),
+ * Copyright 2012-2018 - UDS/Centre de Données astronomiques de Strasbourg (CDS),
  *                       Astronomisches Rechen Institut (ARI)
  */
 
@@ -245,7 +245,7 @@ public abstract class UWSSerializer implements Serializable {
 	 * @param owner			The user which has asked the serialization of the
 	 *             			given jobs list. If NULL, all anonymous jobs are
 	 *             			displayed.
-	 * @param phaseFilters	Represent all the specified job filters to apply ;
+	 * @param listRefiner	Represent all the specified job filters to apply ;
 	 *                    	only the job that pass through this filter should be
 	 *                    	displayed. If NULL, all jobs are displayed.
 	 * @param root			<code>false</code> if the jobs list to serialize
diff --git a/src/uws/job/serializer/filter/JobFilter.java b/src/uws/job/serializer/filter/JobFilter.java
index ec2ef9c..a4f4ad4 100644
--- a/src/uws/job/serializer/filter/JobFilter.java
+++ b/src/uws/job/serializer/filter/JobFilter.java
@@ -16,7 +16,7 @@ package uws.job.serializer.filter;
  * You should have received a copy of the GNU Lesser General Public License
  * along with UWSLibrary.  If not, see <http://www.gnu.org/licenses/>.
  *
- * Copyright 2017 - Astronomisches Rechen Institut (ARI)
+ * Copyright 2017-2018 - Astronomisches Rechen Institut (ARI)
  */
 
 import uws.job.UWSJob;
@@ -28,7 +28,7 @@ import uws.job.UWSJob;
  * @version 4.3 (10/2017)
  * @since 4.3
  *
- * @see JobFilters
+ * @see JobListRefiner
  */
 public interface JobFilter {
 
diff --git a/src/uws/job/serializer/filter/JobListRefiner.java b/src/uws/job/serializer/filter/JobListRefiner.java
index d36c200..9080aca 100644
--- a/src/uws/job/serializer/filter/JobListRefiner.java
+++ b/src/uws/job/serializer/filter/JobListRefiner.java
@@ -16,7 +16,7 @@ package uws.job.serializer.filter;
  * You should have received a copy of the GNU Lesser General Public License
  * along with UWSLibrary.  If not, see <http://www.gnu.org/licenses/>.
  *
- * Copyright 2017 - Astronomisches Rechen Institut (ARI)
+ * Copyright 2017-2018 - Astronomisches Rechen Institut (ARI)
  */
 
 import java.text.ParseException;
@@ -119,7 +119,7 @@ public class JobListRefiner {
 
 	/**
 	 * Empty constructor. No filter and no sorting is done here.
-	 * All jobs given to the {@link #filter(Iterator)} function will then be
+	 * All jobs given to the {@link #refine(Iterator)} function will then be
 	 * allowed.
 	 */
 	protected JobListRefiner(){}
-- 
GitLab