Skip to content

Commit

Permalink
Merge pull request #460 from cube19/master
Browse files Browse the repository at this point in the history
Change EdsData.sourceId to String, as it can be a UUID
  • Loading branch information
johnsully83 authored Mar 15, 2024
2 parents f90134f + cc8ee99 commit a55f5d2
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
public class EdsData implements QueryEntity, UpdateEntity, CreateEntity, DateLastModifiedEntity {
private Integer id;
private EdsEntityType entityType;
private Integer sourceId;
private String sourceId;
private EdsEntityTypeSchemaVersion entityTypeSchemaVersion;
private DateTime dateAdded;
private DateTime dateLastModified;
Expand Down Expand Up @@ -66,12 +66,12 @@ public void setEntityType(EdsEntityType entityType) {
}

@JsonProperty("sourceId")
public Integer getSourceId() {
public String getSourceId() {
return sourceId;
}

@JsonProperty("sourceId")
public void setSourceId(Integer sourceId) {
public void setSourceId(String sourceId) {
this.sourceId = sourceId;
}

Expand Down

0 comments on commit a55f5d2

Please sign in to comment.