diff --git a/src/uws/job/JobList.java b/src/uws/job/JobList.java index a19c135ad63020ee6bcda2bfe0bc9ac63d76b7fa..3f1d27d372e0fd1fea91428bd7e9af3821dcfd17 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 bd7141d9ee56a28998879479f029ebb14e907361..31fa5078314692964f651fbd25f54a1f83198674 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 ec2ef9c4628a55557ba97943064a420289091912..a4f4ad44b2c26ec8a730e40e1ca4c62a88ba212d 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 d36c200b1d11be8e5bada82338cb1965f3587fb4..9080acab5e7db014aa7219cf208500387ecdef9c 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(){}