Class CapabilityStatement.Messaging
- java.lang.Object
-
- org.linuxforhealth.fhir.model.visitor.AbstractVisitable
-
- org.linuxforhealth.fhir.model.type.Element
-
- org.linuxforhealth.fhir.model.type.BackboneElement
-
- org.linuxforhealth.fhir.model.resource.CapabilityStatement.Messaging
-
- All Implemented Interfaces:
Visitable
- Enclosing class:
- CapabilityStatement
public static class CapabilityStatement.Messaging extends BackboneElement
A description of the messaging capabilities of the solution.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
CapabilityStatement.Messaging.Builder
static class
CapabilityStatement.Messaging.Endpoint
An endpoint (network accessible address) to which messages and/or replies are to be sent.static class
CapabilityStatement.Messaging.SupportedMessage
References to message definitions for messages this system can send or receive.
-
Field Summary
-
Fields inherited from class org.linuxforhealth.fhir.model.type.BackboneElement
modifierExtension
-
-
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 CapabilityStatement.Messaging.Builder
builder()
boolean
equals(java.lang.Object obj)
Markdown
getDocumentation()
Documentation about the system's messaging capabilities for this endpoint not otherwise documented by the capability statement.java.util.List<CapabilityStatement.Messaging.Endpoint>
getEndpoint()
An endpoint (network accessible address) to which messages and/or replies are to be sent.UnsignedInt
getReliableCache()
Length if the receiver's reliable messaging cache in minutes (if a receiver) or how long the cache length on the receiver should be (if a sender).java.util.List<CapabilityStatement.Messaging.SupportedMessage>
getSupportedMessage()
References to message definitions for messages this system can send or receive.boolean
hasChildren()
int
hashCode()
CapabilityStatement.Messaging.Builder
toBuilder()
Create a new Builder from the contents of this Element-
Methods inherited from class org.linuxforhealth.fhir.model.type.BackboneElement
getModifierExtension
-
Methods inherited from class org.linuxforhealth.fhir.model.type.Element
as, getExtension, getId, hasValue, is
-
-
-
-
Method Detail
-
getEndpoint
public java.util.List<CapabilityStatement.Messaging.Endpoint> getEndpoint()
An endpoint (network accessible address) to which messages and/or replies are to be sent.- Returns:
- An unmodifiable list containing immutable objects of type
CapabilityStatement.Messaging.Endpoint
that may be empty.
-
getReliableCache
public UnsignedInt getReliableCache()
Length if the receiver's reliable messaging cache in minutes (if a receiver) or how long the cache length on the receiver should be (if a sender).- Returns:
- An immutable object of type
UnsignedInt
that may be null.
-
getDocumentation
public Markdown getDocumentation()
Documentation about the system's messaging capabilities for this endpoint not otherwise documented by the capability statement. For example, the process for becoming an authorized messaging exchange partner.- Returns:
- An immutable object of type
Markdown
that may be null.
-
getSupportedMessage
public java.util.List<CapabilityStatement.Messaging.SupportedMessage> getSupportedMessage()
References to message definitions for messages this system can send or receive.- Returns:
- An unmodifiable list containing immutable objects of type
CapabilityStatement.Messaging.SupportedMessage
that may be empty.
-
hasChildren
public boolean hasChildren()
- Overrides:
hasChildren
in classBackboneElement
-
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 CapabilityStatement.Messaging.Builder toBuilder()
Description copied from class:Element
Create a new Builder from the contents of this Element- Specified by:
toBuilder
in classBackboneElement
-
builder
public static CapabilityStatement.Messaging.Builder builder()
-
-