forked from usdot-jpo-ode/jpo-s3-deposit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix for reading all node list items from the ODE
- Loading branch information
1 parent
f52f3e8
commit c71236c
Showing
8 changed files
with
129 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 0 additions & 39 deletions
39
jpo-s3-depositor/src/main/java/us/dot/its/jpo/ode/s3/depositor/models/ode/NodeLL2.java
This file was deleted.
Oops, something went wrong.
78 changes: 39 additions & 39 deletions
78
.../ode/s3/depositor/models/ode/NodeLL1.java → ...3/depositor/models/ode/NodeLLGeneric.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,39 @@ | ||
|
||
package us.dot.its.jpo.ode.s3.depositor.models.ode; | ||
|
||
import java.io.Serializable; | ||
import com.fasterxml.jackson.annotation.JsonInclude; | ||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
import com.fasterxml.jackson.annotation.JsonPropertyOrder; | ||
|
||
@JsonInclude(JsonInclude.Include.NON_NULL) | ||
@JsonPropertyOrder({ "lon", "lat" }) | ||
public class NodeLL1 implements Serializable { | ||
|
||
@JsonProperty("lon") | ||
private String lon; | ||
@JsonProperty("lat") | ||
private String lat; | ||
private final static long serialVersionUID = -1382973741234036148L; | ||
|
||
@JsonProperty("lon") | ||
public String getLon() { | ||
return lon; | ||
} | ||
|
||
@JsonProperty("lon") | ||
public void setLon(String lon) { | ||
this.lon = lon; | ||
} | ||
|
||
@JsonProperty("lat") | ||
public String getLat() { | ||
return lat; | ||
} | ||
|
||
@JsonProperty("lat") | ||
public void setLat(String lat) { | ||
this.lat = lat; | ||
} | ||
|
||
} | ||
|
||
package us.dot.its.jpo.ode.s3.depositor.models.ode; | ||
|
||
import java.io.Serializable; | ||
import com.fasterxml.jackson.annotation.JsonInclude; | ||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
import com.fasterxml.jackson.annotation.JsonPropertyOrder; | ||
|
||
@JsonInclude(JsonInclude.Include.NON_NULL) | ||
@JsonPropertyOrder({ "lon", "lat" }) | ||
public class NodeLLGeneric implements Serializable { | ||
|
||
@JsonProperty("lon") | ||
private String lon; | ||
@JsonProperty("lat") | ||
private String lat; | ||
private final static long serialVersionUID = -1382973741234036148L; | ||
|
||
@JsonProperty("lon") | ||
public String getLon() { | ||
return lon; | ||
} | ||
|
||
@JsonProperty("lon") | ||
public void setLon(String lon) { | ||
this.lon = lon; | ||
} | ||
|
||
@JsonProperty("lat") | ||
public String getLat() { | ||
return lat; | ||
} | ||
|
||
@JsonProperty("lat") | ||
public void setLat(String lat) { | ||
this.lat = lat; | ||
} | ||
|
||
} |