Enum CanonicalSubscriptionChannelType
- java.lang.Object
-
- java.lang.Enum<CanonicalSubscriptionChannelType>
-
- ca.uhn.fhir.jpa.subscription.module.CanonicalSubscriptionChannelType
-
- All Implemented Interfaces:
Serializable,Comparable<CanonicalSubscriptionChannelType>
public enum CanonicalSubscriptionChannelType extends Enum<CanonicalSubscriptionChannelType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EMAILThe channel is executed by sending an email to the email addressed in the URI (which must be a mailto:).MESSAGEThe channel is executed by sending a message (e.g.NULLadded to help the parsers with the generic typesRESTHOOKThe channel is executed by making a post to the URI.SMSThe channel is executed by sending an SMS message to the phone number identified in the URL (tel:).WEBSOCKETThe channel is executed by sending a packet across a web socket connection maintained by the client.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CanonicalSubscriptionChannelTypefromCode(String theSystem, String codeString)StringgetDefinition()StringgetDisplay()StringgetSystem()org.hl7.fhir.dstu2.model.Subscription.SubscriptionChannelTypetoCanonical()StringtoCode()static CanonicalSubscriptionChannelTypevalueOf(String name)Returns the enum constant of this type with the specified name.static CanonicalSubscriptionChannelType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RESTHOOK
public static final CanonicalSubscriptionChannelType RESTHOOK
The channel is executed by making a post to the URI. If a payload is included, the URL is interpreted as the service base, and an update (PUT) is made.
-
WEBSOCKET
public static final CanonicalSubscriptionChannelType WEBSOCKET
The channel is executed by sending a packet across a web socket connection maintained by the client. The URL identifies the websocket, and the client binds to this URL.
-
EMAIL
public static final CanonicalSubscriptionChannelType EMAIL
The channel is executed by sending an email to the email addressed in the URI (which must be a mailto:).
-
SMS
public static final CanonicalSubscriptionChannelType SMS
The channel is executed by sending an SMS message to the phone number identified in the URL (tel:).
-
MESSAGE
public static final CanonicalSubscriptionChannelType MESSAGE
The channel is executed by sending a message (e.g. a Bundle with a MessageHeader resource etc.) to the application identified in the URI.
-
NULL
public static final CanonicalSubscriptionChannelType NULL
added to help the parsers with the generic types
-
-
Method Detail
-
values
public static CanonicalSubscriptionChannelType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CanonicalSubscriptionChannelType c : CanonicalSubscriptionChannelType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CanonicalSubscriptionChannelType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getDefinition
public String getDefinition()
-
getDisplay
public String getDisplay()
-
toCanonical
public org.hl7.fhir.dstu2.model.Subscription.SubscriptionChannelType toCanonical()
-
-