Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
de4l-private-routes-backend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
scads
DE4L
Privacy
de4l-private-routes-backend
Merge requests
!15
Cleanup
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Cleanup
cleanup
into
main
Overview
0
Commits
9
Pipelines
0
Changes
35
Merged
Jonathan Schneider
requested to merge
cleanup
into
main
2 years ago
Overview
0
Commits
9
Pipelines
0
Changes
35
Expand
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
d841ae0e
9 commits,
2 years ago
35 files
+
323
−
433
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
35
Search (e.g. *.vue) (Ctrl+P)
src/main/java/de/scads/privacy/privateroutes/dto/bidirectional/MeasurementDto.java
+
4
−
7
Options
package
de.scads.privacy.privateroutes.dto.bidirectional
;
import
com.fasterxml.jackson.annotation.JsonProperty
;
import
lombok.Data
;
import
java.util.Date
;
@Data
public
class
MeasurementDto
{
@JsonProperty
(
"type"
)
private
String
type
;
@JsonProperty
(
"value"
)
private
Double
value
;
private
Double
longitude
;
private
Double
latitude
;
private
Date
timestamp
;
private
Boolean
stop
;
}
Loading