Commit a959db1f authored by gmantele's avatar gmantele
Browse files

[UWS] Fix Javadoc

parent 855a805b
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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).
+2 −2
Original line number Diff line number Diff line
@@ -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
+2 −2
Original line number Diff line number Diff line
@@ -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 {

+2 −2
Original line number Diff line number Diff line
@@ -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(){}