Commit d85ade80 authored by Sonia Zorba's avatar Sonia Zorba
Browse files

Made keepBytes property not nullable

parent fc13a128
Loading
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -89,7 +89,7 @@ public class Transfer {
    protected View view;
    @XmlElement(name = "protocol")
    protected List<Protocol> protocols;
    protected Boolean keepBytes;
    protected boolean keepBytes;
    // <edit> Fix: version is missing in VOSpace XSD
    @XmlAttribute
    protected String version;
@@ -207,7 +207,7 @@ public class Transfer {
     *     {@link Boolean }
     *     
     */
    public Boolean isKeepBytes() {
    public boolean isKeepBytes() {
        return keepBytes;
    }

@@ -219,7 +219,7 @@ public class Transfer {
     *     {@link Boolean }
     *     
     */
    public void setKeepBytes(Boolean value) {
    public void setKeepBytes(boolean value) {
        this.keepBytes = value;
    }