Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
abrown3-nmdp committed Oct 4, 2017
1 parent 4d0d00b commit 95dbe61
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ public class FhirMessage implements Serializable {
private Organization organization;
private Patients patients;
private String id;
private String fhirId;

public Organization getOrganization() {
return organization;
Expand All @@ -56,6 +57,14 @@ public String getId() {
return id;
}

public String getFhirId() {
return fhirId;
}

public void setFhirId(String fhirId) {
this.fhirId = fhirId;
}

@Override
public boolean equals(Object o) {
if (this == o) return true;
Expand Down

0 comments on commit 95dbe61

Please sign in to comment.