Enum Class AuditTransmissionChannel
java.lang.Object
java.lang.Enum<AuditTransmissionChannel>
org.openehealth.ipf.commons.audit.protocol.AuditTransmissionChannel
- All Implemented Interfaces:
- Serializable,- Comparable<AuditTransmissionChannel>,- Constable
Maps AuditTransmissionProtocol names to service providers which should provide a concrete instance of an
 
AuditTransmissionProtocol over a ServiceLoader mechanism.- Author:
- Christian Ohr
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionDeprecated, for removal: This API element is subject to removal in a future version.Deprecated, for removal: This API element is subject to removal in a future version.Deprecated, for removal: This API element is subject to removal in a future version.Deprecated, for removal: This API element is subject to removal in a future version.
- 
Method SummaryModifier and TypeMethodDescriptionstatic AuditTransmissionChannelfromProtocolName(String protocolName) makeInstance(TlsParameters tlsParameters) static AuditTransmissionChannelReturns the enum constant of this class with the specified name.static AuditTransmissionChannel[]values()Returns an array containing the constants of this enum class, in the order they are declared.
- 
Enum Constant Details- 
UDP
- 
NIO_UDPDeprecated, for removal: This API element is subject to removal in a future version.
- 
VERTX_UDPDeprecated, for removal: This API element is subject to removal in a future version.
- 
TLS
- 
NIO_TLSDeprecated, for removal: This API element is subject to removal in a future version.
- 
NETTY_TLS
- 
REACTOR_NETTY_TLS
- 
FHIR_REST_TLS@Deprecated(forRemoval=true, since="5.0.0") public static final AuditTransmissionChannel FHIR_REST_TLSDeprecated, for removal: This API element is subject to removal in a future version.
- 
FHIR_REST_APACHE5_TLS
- 
FHIR_REST_METHANOL_TLS
- 
RECORDING
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
 
- 
valueOfReturns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
- NullPointerException- if the argument is null
 
- 
getProtocolName
- 
makeInstance
- 
fromProtocolName
 
-