Class AppointmentResponse
- java.lang.Object
-
- org.linuxforhealth.fhir.model.visitor.AbstractVisitable
-
- org.linuxforhealth.fhir.model.resource.Resource
-
- org.linuxforhealth.fhir.model.resource.DomainResource
-
- org.linuxforhealth.fhir.model.resource.AppointmentResponse
-
- All Implemented Interfaces:
Visitable
@Generated("org.linuxforhealth.fhir.tools.CodeGenerator") public class AppointmentResponse extends DomainResource
A reply to an appointment request for a patient and/or practitioner(s), such as a confirmation or rejection.Maturity level: FMM3 (Trial Use)
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
AppointmentResponse.Builder
-
Field Summary
-
Fields inherited from class org.linuxforhealth.fhir.model.resource.DomainResource
contained, extension, modifierExtension, text
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(java.lang.String elementName, int elementIndex, Visitor visitor)
Accept a Visitor and invoke the appropriate visit methods.static AppointmentResponse.Builder
builder()
boolean
equals(java.lang.Object obj)
Reference
getActor()
A Person, Location, HealthcareService, or Device that is participating in the appointment.Reference
getAppointment()
Appointment that this response is replying to.String
getComment()
Additional comments about the appointment.Instant
getEnd()
This may be either the same as the appointment request to confirm the details of the appointment, or alternately a new time to request a re-negotiation of the end time.java.util.List<Identifier>
getIdentifier()
This records identifiers associated with this appointment response concern that are defined by business processes and/ or used to refer to it when a direct URL reference to the resource itself is not appropriate.ParticipantStatus
getParticipantStatus()
Participation status of the participant.java.util.List<CodeableConcept>
getParticipantType()
Role of participant in the appointment.Instant
getStart()
Date/Time that the appointment is to take place, or requested new start time.boolean
hasChildren()
int
hashCode()
AppointmentResponse.Builder
toBuilder()
Create a new Builder from the contents of this Resource-
Methods inherited from class org.linuxforhealth.fhir.model.resource.DomainResource
getContained, getExtension, getModifierExtension, getText
-
Methods inherited from class org.linuxforhealth.fhir.model.resource.Resource
as, getId, getImplicitRules, getLanguage, getMeta, is
-
-
-
-
Method Detail
-
getIdentifier
public java.util.List<Identifier> getIdentifier()
This records identifiers associated with this appointment response concern that are defined by business processes and/ or used to refer to it when a direct URL reference to the resource itself is not appropriate.- Returns:
- An unmodifiable list containing immutable objects of type
Identifier
that may be empty.
-
getAppointment
public Reference getAppointment()
Appointment that this response is replying to.- Returns:
- An immutable object of type
Reference
that is non-null.
-
getStart
public Instant getStart()
Date/Time that the appointment is to take place, or requested new start time.- Returns:
- An immutable object of type
Instant
that may be null.
-
getEnd
public Instant getEnd()
This may be either the same as the appointment request to confirm the details of the appointment, or alternately a new time to request a re-negotiation of the end time.- Returns:
- An immutable object of type
Instant
that may be null.
-
getParticipantType
public java.util.List<CodeableConcept> getParticipantType()
Role of participant in the appointment.- Returns:
- An unmodifiable list containing immutable objects of type
CodeableConcept
that may be empty.
-
getActor
public Reference getActor()
A Person, Location, HealthcareService, or Device that is participating in the appointment.- Returns:
- An immutable object of type
Reference
that may be null.
-
getParticipantStatus
public ParticipantStatus getParticipantStatus()
Participation status of the participant. When the status is declined or tentative if the start/end times are different to the appointment, then these times should be interpreted as a requested time change. When the status is accepted, the times can either be the time of the appointment (as a confirmation of the time) or can be empty.- Returns:
- An immutable object of type
ParticipantStatus
that is non-null.
-
getComment
public String getComment()
Additional comments about the appointment.- Returns:
- An immutable object of type
String
that may be null.
-
hasChildren
public boolean hasChildren()
- Overrides:
hasChildren
in classDomainResource
-
accept
public void accept(java.lang.String elementName, int elementIndex, Visitor visitor)
Description copied from interface:Visitable
Accept a Visitor and invoke the appropriate visit methods. A typical implementation would look like this:if (visitor.preVisit(this)) { visitor.visitStart(elementName, elementIndex, this); if (visitor.visit(elementName, elementIndex, this)) { // visit children } visitor.visitEnd(elementName, elementIndex, this); visitor.postVisit(this); }
- Specified by:
accept
in interfaceVisitable
- Specified by:
accept
in classAbstractVisitable
- Parameters:
elementName
- the name of the element in the context of this visitelementIndex
- the index of the element in a list or -1 if it is not contained within a Listvisitor
- the visitor to use
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toBuilder
public AppointmentResponse.Builder toBuilder()
Description copied from class:Resource
Create a new Builder from the contents of this Resource- Specified by:
toBuilder
in classDomainResource
-
builder
public static AppointmentResponse.Builder builder()
-
-