All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ibm.fhir.model.resource.CareTeam Maven / Gradle / Ivy

/*
 * (C) Copyright IBM Corp. 2019, 2021
 *
 * SPDX-License-Identifier: Apache-2.0
 */

package com.ibm.fhir.model.resource;

import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
import java.util.Objects;

import javax.annotation.Generated;

import com.ibm.fhir.model.annotation.Binding;
import com.ibm.fhir.model.annotation.Constraint;
import com.ibm.fhir.model.annotation.Maturity;
import com.ibm.fhir.model.annotation.ReferenceTarget;
import com.ibm.fhir.model.annotation.Summary;
import com.ibm.fhir.model.type.Annotation;
import com.ibm.fhir.model.type.BackboneElement;
import com.ibm.fhir.model.type.Code;
import com.ibm.fhir.model.type.CodeableConcept;
import com.ibm.fhir.model.type.ContactPoint;
import com.ibm.fhir.model.type.Extension;
import com.ibm.fhir.model.type.Identifier;
import com.ibm.fhir.model.type.Meta;
import com.ibm.fhir.model.type.Narrative;
import com.ibm.fhir.model.type.Period;
import com.ibm.fhir.model.type.Reference;
import com.ibm.fhir.model.type.String;
import com.ibm.fhir.model.type.Uri;
import com.ibm.fhir.model.type.code.BindingStrength;
import com.ibm.fhir.model.type.code.CareTeamStatus;
import com.ibm.fhir.model.type.code.StandardsStatus;
import com.ibm.fhir.model.util.ValidationSupport;
import com.ibm.fhir.model.visitor.Visitor;

/**
 * The Care Team includes all the people and organizations who plan to participate in the coordination and delivery of 
 * care for a patient.
 * 
 * 

Maturity level: FMM2 (Trial Use) */ @Maturity( level = 2, status = StandardsStatus.Value.TRIAL_USE ) @Constraint( id = "ctm-1", level = "Rule", location = "CareTeam.participant", description = "CareTeam.participant.onBehalfOf can only be populated when CareTeam.participant.member is a Practitioner", expression = "onBehalfOf.exists() implies (member.resolve().iif(empty(), true, ofType(Practitioner).exists()))" ) @Generated("com.ibm.fhir.tools.CodeGenerator") public class CareTeam extends DomainResource { @Summary private final List identifier; @Summary @Binding( bindingName = "CareTeamStatus", strength = BindingStrength.Value.REQUIRED, description = "Indicates the status of the care team.", valueSet = "http://hl7.org/fhir/ValueSet/care-team-status|4.0.1" ) private final CareTeamStatus status; @Summary @Binding( bindingName = "CareTeamCategory", strength = BindingStrength.Value.EXAMPLE, description = "Indicates the type of care team.", valueSet = "http://hl7.org/fhir/ValueSet/care-team-category" ) private final List category; @Summary private final String name; @Summary @ReferenceTarget({ "Patient", "Group" }) private final Reference subject; @Summary @ReferenceTarget({ "Encounter" }) private final Reference encounter; @Summary private final Period period; private final List participant; @Binding( bindingName = "CareTeamReason", strength = BindingStrength.Value.EXAMPLE, description = "Indicates the reason for the care team.", valueSet = "http://hl7.org/fhir/ValueSet/clinical-findings" ) private final List reasonCode; @ReferenceTarget({ "Condition" }) private final List reasonReference; @Summary @ReferenceTarget({ "Organization" }) private final List managingOrganization; private final List telecom; private final List note; private CareTeam(Builder builder) { super(builder); identifier = Collections.unmodifiableList(builder.identifier); status = builder.status; category = Collections.unmodifiableList(builder.category); name = builder.name; subject = builder.subject; encounter = builder.encounter; period = builder.period; participant = Collections.unmodifiableList(builder.participant); reasonCode = Collections.unmodifiableList(builder.reasonCode); reasonReference = Collections.unmodifiableList(builder.reasonReference); managingOrganization = Collections.unmodifiableList(builder.managingOrganization); telecom = Collections.unmodifiableList(builder.telecom); note = Collections.unmodifiableList(builder.note); } /** * Business identifiers assigned to this care team by the performer or other systems which remain constant as the * resource is updated and propagates from server to server. * * @return * An unmodifiable list containing immutable objects of type {@link Identifier} that may be empty. */ public List getIdentifier() { return identifier; } /** * Indicates the current state of the care team. * * @return * An immutable object of type {@link CareTeamStatus} that may be null. */ public CareTeamStatus getStatus() { return status; } /** * Identifies what kind of team. This is to support differentiation between multiple co-existing teams, such as care plan * team, episode of care team, longitudinal care team. * * @return * An unmodifiable list containing immutable objects of type {@link CodeableConcept} that may be empty. */ public List getCategory() { return category; } /** * A label for human use intended to distinguish like teams. E.g. the "red" vs. "green" trauma teams. * * @return * An immutable object of type {@link String} that may be null. */ public String getName() { return name; } /** * Identifies the patient or group whose intended care is handled by the team. * * @return * An immutable object of type {@link Reference} that may be null. */ public Reference getSubject() { return subject; } /** * The Encounter during which this CareTeam was created or to which the creation of this record is tightly associated. * * @return * An immutable object of type {@link Reference} that may be null. */ public Reference getEncounter() { return encounter; } /** * Indicates when the team did (or is intended to) come into effect and end. * * @return * An immutable object of type {@link Period} that may be null. */ public Period getPeriod() { return period; } /** * Identifies all people and organizations who are expected to be involved in the care team. * * @return * An unmodifiable list containing immutable objects of type {@link Participant} that may be empty. */ public List getParticipant() { return participant; } /** * Describes why the care team exists. * * @return * An unmodifiable list containing immutable objects of type {@link CodeableConcept} that may be empty. */ public List getReasonCode() { return reasonCode; } /** * Condition(s) that this care team addresses. * * @return * An unmodifiable list containing immutable objects of type {@link Reference} that may be empty. */ public List getReasonReference() { return reasonReference; } /** * The organization responsible for the care team. * * @return * An unmodifiable list containing immutable objects of type {@link Reference} that may be empty. */ public List getManagingOrganization() { return managingOrganization; } /** * A central contact detail for the care team (that applies to all members). * * @return * An unmodifiable list containing immutable objects of type {@link ContactPoint} that may be empty. */ public List getTelecom() { return telecom; } /** * Comments made about the CareTeam. * * @return * An unmodifiable list containing immutable objects of type {@link Annotation} that may be empty. */ public List getNote() { return note; } @Override public boolean hasChildren() { return super.hasChildren() || !identifier.isEmpty() || (status != null) || !category.isEmpty() || (name != null) || (subject != null) || (encounter != null) || (period != null) || !participant.isEmpty() || !reasonCode.isEmpty() || !reasonReference.isEmpty() || !managingOrganization.isEmpty() || !telecom.isEmpty() || !note.isEmpty(); } @Override public void accept(java.lang.String elementName, int elementIndex, Visitor visitor) { if (visitor.preVisit(this)) { visitor.visitStart(elementName, elementIndex, this); if (visitor.visit(elementName, elementIndex, this)) { // visit children accept(id, "id", visitor); accept(meta, "meta", visitor); accept(implicitRules, "implicitRules", visitor); accept(language, "language", visitor); accept(text, "text", visitor); accept(contained, "contained", visitor, Resource.class); accept(extension, "extension", visitor, Extension.class); accept(modifierExtension, "modifierExtension", visitor, Extension.class); accept(identifier, "identifier", visitor, Identifier.class); accept(status, "status", visitor); accept(category, "category", visitor, CodeableConcept.class); accept(name, "name", visitor); accept(subject, "subject", visitor); accept(encounter, "encounter", visitor); accept(period, "period", visitor); accept(participant, "participant", visitor, Participant.class); accept(reasonCode, "reasonCode", visitor, CodeableConcept.class); accept(reasonReference, "reasonReference", visitor, Reference.class); accept(managingOrganization, "managingOrganization", visitor, Reference.class); accept(telecom, "telecom", visitor, ContactPoint.class); accept(note, "note", visitor, Annotation.class); } visitor.visitEnd(elementName, elementIndex, this); visitor.postVisit(this); } } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (getClass() != obj.getClass()) { return false; } CareTeam other = (CareTeam) obj; return Objects.equals(id, other.id) && Objects.equals(meta, other.meta) && Objects.equals(implicitRules, other.implicitRules) && Objects.equals(language, other.language) && Objects.equals(text, other.text) && Objects.equals(contained, other.contained) && Objects.equals(extension, other.extension) && Objects.equals(modifierExtension, other.modifierExtension) && Objects.equals(identifier, other.identifier) && Objects.equals(status, other.status) && Objects.equals(category, other.category) && Objects.equals(name, other.name) && Objects.equals(subject, other.subject) && Objects.equals(encounter, other.encounter) && Objects.equals(period, other.period) && Objects.equals(participant, other.participant) && Objects.equals(reasonCode, other.reasonCode) && Objects.equals(reasonReference, other.reasonReference) && Objects.equals(managingOrganization, other.managingOrganization) && Objects.equals(telecom, other.telecom) && Objects.equals(note, other.note); } @Override public int hashCode() { int result = hashCode; if (result == 0) { result = Objects.hash(id, meta, implicitRules, language, text, contained, extension, modifierExtension, identifier, status, category, name, subject, encounter, period, participant, reasonCode, reasonReference, managingOrganization, telecom, note); hashCode = result; } return result; } @Override public Builder toBuilder() { return new Builder().from(this); } public static Builder builder() { return new Builder(); } public static class Builder extends DomainResource.Builder { private List identifier = new ArrayList<>(); private CareTeamStatus status; private List category = new ArrayList<>(); private String name; private Reference subject; private Reference encounter; private Period period; private List participant = new ArrayList<>(); private List reasonCode = new ArrayList<>(); private List reasonReference = new ArrayList<>(); private List managingOrganization = new ArrayList<>(); private List telecom = new ArrayList<>(); private List note = new ArrayList<>(); private Builder() { super(); } /** * The logical id of the resource, as used in the URL for the resource. Once assigned, this value never changes. * * @param id * Logical id of this artifact * * @return * A reference to this Builder instance */ @Override public Builder id(java.lang.String id) { return (Builder) super.id(id); } /** * The metadata about the resource. This is content that is maintained by the infrastructure. Changes to the content * might not always be associated with version changes to the resource. * * @param meta * Metadata about the resource * * @return * A reference to this Builder instance */ @Override public Builder meta(Meta meta) { return (Builder) super.meta(meta); } /** * A reference to a set of rules that were followed when the resource was constructed, and which must be understood when * processing the content. Often, this is a reference to an implementation guide that defines the special rules along * with other profiles etc. * * @param implicitRules * A set of rules under which this content was created * * @return * A reference to this Builder instance */ @Override public Builder implicitRules(Uri implicitRules) { return (Builder) super.implicitRules(implicitRules); } /** * The base language in which the resource is written. * * @param language * Language of the resource content * * @return * A reference to this Builder instance */ @Override public Builder language(Code language) { return (Builder) super.language(language); } /** * A human-readable narrative that contains a summary of the resource and can be used to represent the content of the * resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient * detail to make it "clinically safe" for a human to just read the narrative. Resource definitions may define what * content should be represented in the narrative to ensure clinical safety. * * @param text * Text summary of the resource, for human interpretation * * @return * A reference to this Builder instance */ @Override public Builder text(Narrative text) { return (Builder) super.text(text); } /** * These resources do not have an independent existence apart from the resource that contains them - they cannot be * identified independently, and nor can they have their own independent transaction scope. * *

Adds new element(s) to the existing list * * @param contained * Contained, inline Resources * * @return * A reference to this Builder instance */ @Override public Builder contained(Resource... contained) { return (Builder) super.contained(contained); } /** * These resources do not have an independent existence apart from the resource that contains them - they cannot be * identified independently, and nor can they have their own independent transaction scope. * *

Replaces the existing list with a new one containing elements from the Collection * * @param contained * Contained, inline Resources * * @return * A reference to this Builder instance */ @Override public Builder contained(Collection contained) { return (Builder) super.contained(contained); } /** * May be used to represent additional information that is not part of the basic definition of the resource. To make the * use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of * extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part * of the definition of the extension. * *

Adds new element(s) to the existing list * * @param extension * Additional content defined by implementations * * @return * A reference to this Builder instance */ @Override public Builder extension(Extension... extension) { return (Builder) super.extension(extension); } /** * May be used to represent additional information that is not part of the basic definition of the resource. To make the * use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of * extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part * of the definition of the extension. * *

Replaces the existing list with a new one containing elements from the Collection * * @param extension * Additional content defined by implementations * * @return * A reference to this Builder instance */ @Override public Builder extension(Collection extension) { return (Builder) super.extension(extension); } /** * May be used to represent additional information that is not part of the basic definition of the resource and that * modifies the understanding of the element that contains it and/or the understanding of the containing element's * descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and * manageable, there is a strict set of governance applied to the definition and use of extensions. Though any * implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the * definition of the extension. Applications processing a resource are required to check for modifier extensions. * *

Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot * change the meaning of modifierExtension itself). * *

Adds new element(s) to the existing list * * @param modifierExtension * Extensions that cannot be ignored * * @return * A reference to this Builder instance */ @Override public Builder modifierExtension(Extension... modifierExtension) { return (Builder) super.modifierExtension(modifierExtension); } /** * May be used to represent additional information that is not part of the basic definition of the resource and that * modifies the understanding of the element that contains it and/or the understanding of the containing element's * descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe and * manageable, there is a strict set of governance applied to the definition and use of extensions. Though any * implementer is allowed to define an extension, there is a set of requirements that SHALL be met as part of the * definition of the extension. Applications processing a resource are required to check for modifier extensions. * *

Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot * change the meaning of modifierExtension itself). * *

Replaces the existing list with a new one containing elements from the Collection * * @param modifierExtension * Extensions that cannot be ignored * * @return * A reference to this Builder instance */ @Override public Builder modifierExtension(Collection modifierExtension) { return (Builder) super.modifierExtension(modifierExtension); } /** * Business identifiers assigned to this care team by the performer or other systems which remain constant as the * resource is updated and propagates from server to server. * *

Adds new element(s) to the existing list * * @param identifier * External Ids for this team * * @return * A reference to this Builder instance */ public Builder identifier(Identifier... identifier) { for (Identifier value : identifier) { this.identifier.add(value); } return this; } /** * Business identifiers assigned to this care team by the performer or other systems which remain constant as the * resource is updated and propagates from server to server. * *

Replaces the existing list with a new one containing elements from the Collection * * @param identifier * External Ids for this team * * @return * A reference to this Builder instance */ public Builder identifier(Collection identifier) { this.identifier = new ArrayList<>(identifier); return this; } /** * Indicates the current state of the care team. * * @param status * proposed | active | suspended | inactive | entered-in-error * * @return * A reference to this Builder instance */ public Builder status(CareTeamStatus status) { this.status = status; return this; } /** * Identifies what kind of team. This is to support differentiation between multiple co-existing teams, such as care plan * team, episode of care team, longitudinal care team. * *

Adds new element(s) to the existing list * * @param category * Type of team * * @return * A reference to this Builder instance */ public Builder category(CodeableConcept... category) { for (CodeableConcept value : category) { this.category.add(value); } return this; } /** * Identifies what kind of team. This is to support differentiation between multiple co-existing teams, such as care plan * team, episode of care team, longitudinal care team. * *

Replaces the existing list with a new one containing elements from the Collection * * @param category * Type of team * * @return * A reference to this Builder instance */ public Builder category(Collection category) { this.category = new ArrayList<>(category); return this; } /** * A label for human use intended to distinguish like teams. E.g. the "red" vs. "green" trauma teams. * * @param name * Name of the team, such as crisis assessment team * * @return * A reference to this Builder instance */ public Builder name(String name) { this.name = name; return this; } /** * Identifies the patient or group whose intended care is handled by the team. * *

Allowed resource types for this reference: *

    *
  • {@link Patient}
  • *
  • {@link Group}
  • *
* * @param subject * Who care team is for * * @return * A reference to this Builder instance */ public Builder subject(Reference subject) { this.subject = subject; return this; } /** * The Encounter during which this CareTeam was created or to which the creation of this record is tightly associated. * *

Allowed resource types for this reference: *

    *
  • {@link Encounter}
  • *
* * @param encounter * Encounter created as part of * * @return * A reference to this Builder instance */ public Builder encounter(Reference encounter) { this.encounter = encounter; return this; } /** * Indicates when the team did (or is intended to) come into effect and end. * * @param period * Time period team covers * * @return * A reference to this Builder instance */ public Builder period(Period period) { this.period = period; return this; } /** * Identifies all people and organizations who are expected to be involved in the care team. * *

Adds new element(s) to the existing list * * @param participant * Members of the team * * @return * A reference to this Builder instance */ public Builder participant(Participant... participant) { for (Participant value : participant) { this.participant.add(value); } return this; } /** * Identifies all people and organizations who are expected to be involved in the care team. * *

Replaces the existing list with a new one containing elements from the Collection * * @param participant * Members of the team * * @return * A reference to this Builder instance */ public Builder participant(Collection participant) { this.participant = new ArrayList<>(participant); return this; } /** * Describes why the care team exists. * *

Adds new element(s) to the existing list * * @param reasonCode * Why the care team exists * * @return * A reference to this Builder instance */ public Builder reasonCode(CodeableConcept... reasonCode) { for (CodeableConcept value : reasonCode) { this.reasonCode.add(value); } return this; } /** * Describes why the care team exists. * *

Replaces the existing list with a new one containing elements from the Collection * * @param reasonCode * Why the care team exists * * @return * A reference to this Builder instance */ public Builder reasonCode(Collection reasonCode) { this.reasonCode = new ArrayList<>(reasonCode); return this; } /** * Condition(s) that this care team addresses. * *

Adds new element(s) to the existing list * *

Allowed resource types for the references: *

    *
  • {@link Condition}
  • *
* * @param reasonReference * Why the care team exists * * @return * A reference to this Builder instance */ public Builder reasonReference(Reference... reasonReference) { for (Reference value : reasonReference) { this.reasonReference.add(value); } return this; } /** * Condition(s) that this care team addresses. * *

Replaces the existing list with a new one containing elements from the Collection * *

Allowed resource types for the references: *

    *
  • {@link Condition}
  • *
* * @param reasonReference * Why the care team exists * * @return * A reference to this Builder instance */ public Builder reasonReference(Collection reasonReference) { this.reasonReference = new ArrayList<>(reasonReference); return this; } /** * The organization responsible for the care team. * *

Adds new element(s) to the existing list * *

Allowed resource types for the references: *

    *
  • {@link Organization}
  • *
* * @param managingOrganization * Organization responsible for the care team * * @return * A reference to this Builder instance */ public Builder managingOrganization(Reference... managingOrganization) { for (Reference value : managingOrganization) { this.managingOrganization.add(value); } return this; } /** * The organization responsible for the care team. * *

Replaces the existing list with a new one containing elements from the Collection * *

Allowed resource types for the references: *

    *
  • {@link Organization}
  • *
* * @param managingOrganization * Organization responsible for the care team * * @return * A reference to this Builder instance */ public Builder managingOrganization(Collection managingOrganization) { this.managingOrganization = new ArrayList<>(managingOrganization); return this; } /** * A central contact detail for the care team (that applies to all members). * *

Adds new element(s) to the existing list * * @param telecom * A contact detail for the care team (that applies to all members) * * @return * A reference to this Builder instance */ public Builder telecom(ContactPoint... telecom) { for (ContactPoint value : telecom) { this.telecom.add(value); } return this; } /** * A central contact detail for the care team (that applies to all members). * *

Replaces the existing list with a new one containing elements from the Collection * * @param telecom * A contact detail for the care team (that applies to all members) * * @return * A reference to this Builder instance */ public Builder telecom(Collection telecom) { this.telecom = new ArrayList<>(telecom); return this; } /** * Comments made about the CareTeam. * *

Adds new element(s) to the existing list * * @param note * Comments made about the CareTeam * * @return * A reference to this Builder instance */ public Builder note(Annotation... note) { for (Annotation value : note) { this.note.add(value); } return this; } /** * Comments made about the CareTeam. * *

Replaces the existing list with a new one containing elements from the Collection * * @param note * Comments made about the CareTeam * * @return * A reference to this Builder instance */ public Builder note(Collection note) { this.note = new ArrayList<>(note); return this; } /** * Build the {@link CareTeam} * * @return * An immutable object of type {@link CareTeam} * @throws IllegalStateException * if the current state cannot be built into a valid CareTeam per the base specification */ @Override public CareTeam build() { CareTeam careTeam = new CareTeam(this); if (validating) { validate(careTeam); } return careTeam; } protected void validate(CareTeam careTeam) { super.validate(careTeam); ValidationSupport.checkList(careTeam.identifier, "identifier", Identifier.class); ValidationSupport.checkList(careTeam.category, "category", CodeableConcept.class); ValidationSupport.checkList(careTeam.participant, "participant", Participant.class); ValidationSupport.checkList(careTeam.reasonCode, "reasonCode", CodeableConcept.class); ValidationSupport.checkList(careTeam.reasonReference, "reasonReference", Reference.class); ValidationSupport.checkList(careTeam.managingOrganization, "managingOrganization", Reference.class); ValidationSupport.checkList(careTeam.telecom, "telecom", ContactPoint.class); ValidationSupport.checkList(careTeam.note, "note", Annotation.class); ValidationSupport.checkReferenceType(careTeam.subject, "subject", "Patient", "Group"); ValidationSupport.checkReferenceType(careTeam.encounter, "encounter", "Encounter"); ValidationSupport.checkReferenceType(careTeam.reasonReference, "reasonReference", "Condition"); ValidationSupport.checkReferenceType(careTeam.managingOrganization, "managingOrganization", "Organization"); } protected Builder from(CareTeam careTeam) { super.from(careTeam); identifier.addAll(careTeam.identifier); status = careTeam.status; category.addAll(careTeam.category); name = careTeam.name; subject = careTeam.subject; encounter = careTeam.encounter; period = careTeam.period; participant.addAll(careTeam.participant); reasonCode.addAll(careTeam.reasonCode); reasonReference.addAll(careTeam.reasonReference); managingOrganization.addAll(careTeam.managingOrganization); telecom.addAll(careTeam.telecom); note.addAll(careTeam.note); return this; } } /** * Identifies all people and organizations who are expected to be involved in the care team. */ public static class Participant extends BackboneElement { @Summary @Binding( bindingName = "CareTeamParticipantRole", strength = BindingStrength.Value.EXAMPLE, description = "Indicates specific responsibility of an individual within the care team, such as \"Primary physician\", \"Team coordinator\", \"Caregiver\", etc.", valueSet = "http://hl7.org/fhir/ValueSet/participant-role" ) private final List role; @Summary @ReferenceTarget({ "Practitioner", "PractitionerRole", "RelatedPerson", "Patient", "Organization", "CareTeam" }) private final Reference member; @Summary @ReferenceTarget({ "Organization" }) private final Reference onBehalfOf; private final Period period; private Participant(Builder builder) { super(builder); role = Collections.unmodifiableList(builder.role); member = builder.member; onBehalfOf = builder.onBehalfOf; period = builder.period; } /** * Indicates specific responsibility of an individual within the care team, such as "Primary care physician", "Trained * social worker counselor", "Caregiver", etc. * * @return * An unmodifiable list containing immutable objects of type {@link CodeableConcept} that may be empty. */ public List getRole() { return role; } /** * The specific person or organization who is participating/expected to participate in the care team. * * @return * An immutable object of type {@link Reference} that may be null. */ public Reference getMember() { return member; } /** * The organization of the practitioner. * * @return * An immutable object of type {@link Reference} that may be null. */ public Reference getOnBehalfOf() { return onBehalfOf; } /** * Indicates when the specific member or organization did (or is intended to) come into effect and end. * * @return * An immutable object of type {@link Period} that may be null. */ public Period getPeriod() { return period; } @Override public boolean hasChildren() { return super.hasChildren() || !role.isEmpty() || (member != null) || (onBehalfOf != null) || (period != null); } @Override public void accept(java.lang.String elementName, int elementIndex, Visitor visitor) { if (visitor.preVisit(this)) { visitor.visitStart(elementName, elementIndex, this); if (visitor.visit(elementName, elementIndex, this)) { // visit children accept(id, "id", visitor); accept(extension, "extension", visitor, Extension.class); accept(modifierExtension, "modifierExtension", visitor, Extension.class); accept(role, "role", visitor, CodeableConcept.class); accept(member, "member", visitor); accept(onBehalfOf, "onBehalfOf", visitor); accept(period, "period", visitor); } visitor.visitEnd(elementName, elementIndex, this); visitor.postVisit(this); } } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (getClass() != obj.getClass()) { return false; } Participant other = (Participant) obj; return Objects.equals(id, other.id) && Objects.equals(extension, other.extension) && Objects.equals(modifierExtension, other.modifierExtension) && Objects.equals(role, other.role) && Objects.equals(member, other.member) && Objects.equals(onBehalfOf, other.onBehalfOf) && Objects.equals(period, other.period); } @Override public int hashCode() { int result = hashCode; if (result == 0) { result = Objects.hash(id, extension, modifierExtension, role, member, onBehalfOf, period); hashCode = result; } return result; } @Override public Builder toBuilder() { return new Builder().from(this); } public static Builder builder() { return new Builder(); } public static class Builder extends BackboneElement.Builder { private List role = new ArrayList<>(); private Reference member; private Reference onBehalfOf; private Period period; private Builder() { super(); } /** * Unique id for the element within a resource (for internal references). This may be any string value that does not * contain spaces. * * @param id * Unique id for inter-element referencing * * @return * A reference to this Builder instance */ @Override public Builder id(java.lang.String id) { return (Builder) super.id(id); } /** * May be used to represent additional information that is not part of the basic definition of the element. To make the * use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of * extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part * of the definition of the extension. * *

Adds new element(s) to the existing list * * @param extension * Additional content defined by implementations * * @return * A reference to this Builder instance */ @Override public Builder extension(Extension... extension) { return (Builder) super.extension(extension); } /** * May be used to represent additional information that is not part of the basic definition of the element. To make the * use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of * extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part * of the definition of the extension. * *

Replaces the existing list with a new one containing elements from the Collection * * @param extension * Additional content defined by implementations * * @return * A reference to this Builder instance */ @Override public Builder extension(Collection extension) { return (Builder) super.extension(extension); } /** * May be used to represent additional information that is not part of the basic definition of the element and that * modifies the understanding of the element in which it is contained and/or the understanding of the containing * element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe * and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any * implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the * extension. Applications processing a resource are required to check for modifier extensions. * *

Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot * change the meaning of modifierExtension itself). * *

Adds new element(s) to the existing list * * @param modifierExtension * Extensions that cannot be ignored even if unrecognized * * @return * A reference to this Builder instance */ @Override public Builder modifierExtension(Extension... modifierExtension) { return (Builder) super.modifierExtension(modifierExtension); } /** * May be used to represent additional information that is not part of the basic definition of the element and that * modifies the understanding of the element in which it is contained and/or the understanding of the containing * element's descendants. Usually modifier elements provide negation or qualification. To make the use of extensions safe * and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any * implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the * extension. Applications processing a resource are required to check for modifier extensions. * *

Modifier extensions SHALL NOT change the meaning of any elements on Resource or DomainResource (including cannot * change the meaning of modifierExtension itself). * *

Replaces the existing list with a new one containing elements from the Collection * * @param modifierExtension * Extensions that cannot be ignored even if unrecognized * * @return * A reference to this Builder instance */ @Override public Builder modifierExtension(Collection modifierExtension) { return (Builder) super.modifierExtension(modifierExtension); } /** * Indicates specific responsibility of an individual within the care team, such as "Primary care physician", "Trained * social worker counselor", "Caregiver", etc. * *

Adds new element(s) to the existing list * * @param role * Type of involvement * * @return * A reference to this Builder instance */ public Builder role(CodeableConcept... role) { for (CodeableConcept value : role) { this.role.add(value); } return this; } /** * Indicates specific responsibility of an individual within the care team, such as "Primary care physician", "Trained * social worker counselor", "Caregiver", etc. * *

Replaces the existing list with a new one containing elements from the Collection * * @param role * Type of involvement * * @return * A reference to this Builder instance */ public Builder role(Collection role) { this.role = new ArrayList<>(role); return this; } /** * The specific person or organization who is participating/expected to participate in the care team. * *

Allowed resource types for this reference: *

    *
  • {@link Practitioner}
  • *
  • {@link PractitionerRole}
  • *
  • {@link RelatedPerson}
  • *
  • {@link Patient}
  • *
  • {@link Organization}
  • *
  • {@link CareTeam}
  • *
* * @param member * Who is involved * * @return * A reference to this Builder instance */ public Builder member(Reference member) { this.member = member; return this; } /** * The organization of the practitioner. * *

Allowed resource types for this reference: *

    *
  • {@link Organization}
  • *
* * @param onBehalfOf * Organization of the practitioner * * @return * A reference to this Builder instance */ public Builder onBehalfOf(Reference onBehalfOf) { this.onBehalfOf = onBehalfOf; return this; } /** * Indicates when the specific member or organization did (or is intended to) come into effect and end. * * @param period * Time period of participant * * @return * A reference to this Builder instance */ public Builder period(Period period) { this.period = period; return this; } /** * Build the {@link Participant} * * @return * An immutable object of type {@link Participant} * @throws IllegalStateException * if the current state cannot be built into a valid Participant per the base specification */ @Override public Participant build() { Participant participant = new Participant(this); if (validating) { validate(participant); } return participant; } protected void validate(Participant participant) { super.validate(participant); ValidationSupport.checkList(participant.role, "role", CodeableConcept.class); ValidationSupport.checkReferenceType(participant.member, "member", "Practitioner", "PractitionerRole", "RelatedPerson", "Patient", "Organization", "CareTeam"); ValidationSupport.checkReferenceType(participant.onBehalfOf, "onBehalfOf", "Organization"); ValidationSupport.requireValueOrChildren(participant); } protected Builder from(Participant participant) { super.from(participant); role.addAll(participant.role); member = participant.member; onBehalfOf = participant.onBehalfOf; period = participant.period; return this; } } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy