Package de.otto.synapse.annotation
Annotation Type EnableMessageLogReceiverEndpoint
-
@Target(TYPE) @Retention(RUNTIME) @Documented @Import({MessageLogReceiverEndpointBeanRegistrar.class,MessageLogReceiverEndpointAutoConfiguration.class}) @Repeatable(EnableMessageLogReceiverEndpoints.class) public @interface EnableMessageLogReceiverEndpoint
-
-
Required Element Summary
Required Elements Modifier and Type Required Element Description java.lang.StringchannelNameThe name of the message-log channel.
-
-
-
-
name
java.lang.String name
The name of the registered MessageLogReceiverEndpoint bean.If
#nameis not set, the name of the bean is derived from the name of the message channel. The name is constructed by tranforming hyphenated variable naming convention, e.g., "my-channel" into the Spring bean naming convention, e.g., "myChannel". After this conversion, the string "MessageLogReceiverEndpoint" is appended. A channel named "my-channel" will therefore result in a bean name "myChannelMessageLogReceiverEndpoint".- Returns:
- bean name
- Default:
- ""
-
-