add helper method to CanonicalSubscription (#1226)
This commit is contained in:
parent
5dccf93506
commit
94021989b0
|
@ -29,10 +29,10 @@ import org.apache.commons.lang3.builder.HashCodeBuilder;
|
|||
import org.apache.commons.lang3.builder.ToStringBuilder;
|
||||
import org.hl7.fhir.instance.model.api.IIdType;
|
||||
import org.hl7.fhir.instance.model.api.IPrimitiveType;
|
||||
import org.hl7.fhir.r4.model.IdType;
|
||||
import org.hl7.fhir.r4.model.Subscription;
|
||||
|
||||
import javax.annotation.Nonnull;
|
||||
import javax.annotation.Nullable;
|
||||
import java.io.Serializable;
|
||||
import java.util.*;
|
||||
|
||||
|
@ -173,6 +173,10 @@ public class CanonicalSubscription implements Serializable, Cloneable {
|
|||
return retVal;
|
||||
}
|
||||
|
||||
public String getIdPart() {
|
||||
return new IdType(getIdElementString()).getIdPart();
|
||||
}
|
||||
|
||||
public String getIdElementString() {
|
||||
return myIdElement;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue