mirror of
https://github.com/hapifhir/hapi-fhir.git
synced 2025-02-17 02:15:22 +00:00
Fix java.lang.string in empiLink entity
This commit is contained in:
parent
8b378995b2
commit
efaf09fbfa
@ -89,7 +89,7 @@ public class EmpiLink {
|
|||||||
private Date myUpdated;
|
private Date myUpdated;
|
||||||
|
|
||||||
@Column(name = "VERSION", nullable = false, length = VERSION_LENGTH)
|
@Column(name = "VERSION", nullable = false, length = VERSION_LENGTH)
|
||||||
private java.lang.String myVersion;
|
private String myVersion;
|
||||||
|
|
||||||
/** This link was created as a result of an eid match **/
|
/** This link was created as a result of an eid match **/
|
||||||
@Column(name = "EID_MATCH")
|
@Column(name = "EID_MATCH")
|
||||||
@ -107,7 +107,7 @@ public class EmpiLink {
|
|||||||
|
|
||||||
public EmpiLink() {}
|
public EmpiLink() {}
|
||||||
|
|
||||||
public EmpiLink(java.lang.String theVersion) {
|
public EmpiLink(String theVersion) {
|
||||||
myVersion = theVersion;
|
myVersion = theVersion;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -221,11 +221,11 @@ public class EmpiLink {
|
|||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public java.lang.String getVersion() {
|
public String getVersion() {
|
||||||
return myVersion;
|
return myVersion;
|
||||||
}
|
}
|
||||||
|
|
||||||
public EmpiLink setVersion(java.lang.String theVersion) {
|
public EmpiLink setVersion(String theVersion) {
|
||||||
myVersion = theVersion;
|
myVersion = theVersion;
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
@ -275,7 +275,7 @@ public class EmpiLink {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public java.lang.String toString() {
|
public String toString() {
|
||||||
return new ToStringBuilder(this)
|
return new ToStringBuilder(this)
|
||||||
.append("myPersonPid", myPersonPid)
|
.append("myPersonPid", myPersonPid)
|
||||||
.append("myTargetPid", myTargetPid)
|
.append("myTargetPid", myTargetPid)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user