Skip to content
Snippets Groups Projects
Commit d85ade80 authored by Sonia Zorba's avatar Sonia Zorba
Browse files

Made keepBytes property not nullable

parent fc13a128
No related branches found
No related tags found
No related merge requests found
Pipeline #1947 passed
...@@ -89,7 +89,7 @@ public class Transfer { ...@@ -89,7 +89,7 @@ public class Transfer {
protected View view; protected View view;
@XmlElement(name = "protocol") @XmlElement(name = "protocol")
protected List<Protocol> protocols; protected List<Protocol> protocols;
protected Boolean keepBytes; protected boolean keepBytes;
// <edit> Fix: version is missing in VOSpace XSD // <edit> Fix: version is missing in VOSpace XSD
@XmlAttribute @XmlAttribute
protected String version; protected String version;
...@@ -207,7 +207,7 @@ public class Transfer { ...@@ -207,7 +207,7 @@ public class Transfer {
* {@link Boolean } * {@link Boolean }
* *
*/ */
public Boolean isKeepBytes() { public boolean isKeepBytes() {
return keepBytes; return keepBytes;
} }
...@@ -219,7 +219,7 @@ public class Transfer { ...@@ -219,7 +219,7 @@ public class Transfer {
* {@link Boolean } * {@link Boolean }
* *
*/ */
public void setKeepBytes(Boolean value) { public void setKeepBytes(boolean value) {
this.keepBytes = value; this.keepBytes = value;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment