Skip to content
Snippets Groups Projects
Commit 668f7ebe authored by Grégory Mantelet's avatar Grégory Mantelet
Browse files

[UWS] Fix missing double quotes in the XML serialization of job parameters

passed by reference.
parent 5f18ac69
No related branches found
No related tags found
No related merge requests found
...@@ -41,7 +41,7 @@ import uws.service.request.UploadFile; ...@@ -41,7 +41,7 @@ import uws.service.request.UploadFile;
* Lets serializing any UWS resource in XML. * Lets serializing any UWS resource in XML.
* *
* @author Grégory Mantelet (CDS;ARI) * @author Grégory Mantelet (CDS;ARI)
* @version 4.3 (03/2018) * @version 4.3 (04/2018)
*/ */
public class XMLSerializer extends UWSSerializer { public class XMLSerializer extends UWSSerializer {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
...@@ -433,7 +433,7 @@ public class XMLSerializer extends UWSSerializer { ...@@ -433,7 +433,7 @@ public class XMLSerializer extends UWSSerializer {
// set if it is an uploaded file: // set if it is an uploaded file:
if (paramValue instanceof UploadFile) if (paramValue instanceof UploadFile)
buf.append(" byReference=\"true"); buf.append(" byReference=\"true\"");
/* /*
* Note: * Note:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment