Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
vospace-datamodel
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VOSpace INAF
vospace-datamodel
Commits
d85ade80
Commit
d85ade80
authored
3 years ago
by
Sonia Zorba
Browse files
Options
Downloads
Patches
Plain Diff
Made keepBytes property not nullable
parent
fc13a128
No related branches found
No related tags found
No related merge requests found
Pipeline
#1947
passed
3 years ago
Stage: build
Stage: test
Stage: deploy
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/net/ivoa/xml/vospace/v2/Transfer.java
+3
-3
3 additions, 3 deletions
src/main/java/net/ivoa/xml/vospace/v2/Transfer.java
with
3 additions
and
3 deletions
src/main/java/net/ivoa/xml/vospace/v2/Transfer.java
+
3
−
3
View file @
d85ade80
...
@@ -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
B
oolean
keepBytes
;
protected
b
oolean
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
B
oolean
isKeepBytes
()
{
public
b
oolean
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
(
B
oolean
value
)
{
public
void
setKeepBytes
(
b
oolean
value
)
{
this
.
keepBytes
=
value
;
this
.
keepBytes
=
value
;
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment