Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
INB
eTRANSAFE
pretox-rest-api
Commits
4bb7b849
Commit
4bb7b849
authored
Oct 18, 2021
by
Javi Corvi
Browse files
new version features
parent
351d7bdb
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/main/java/es/bsc/inb/ades/rest/api/model/DocumentTracking.java
View file @
4bb7b849
...
...
@@ -30,6 +30,7 @@ public class DocumentTracking {
public
DocumentTracking
(
Long
documentId
)
{
this
.
documentId
=
documentId
;
this
.
trackings
=
new
ArrayList
<
Tracking
>();
}
...
...
src/main/java/es/bsc/inb/ades/rest/api/services/DocumentServiceImpl.java
View file @
4bb7b849
...
...
@@ -750,7 +750,8 @@ public class DocumentServiceImpl implements DocumentService {
}
public
DocumentTracking
findTrackings
(
Long
documentId
)
{
return
documentTrackingRepository
.
findByDocumentId
(
documentId
);
DocumentTracking
documentTracking
=
this
.
findDocumentTrackingById
(
documentId
);
return
documentTracking
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment