All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.otto.synapse.message.HeaderAttr Maven / Gradle / Ivy

Go to download

A library used at otto.de to implement Spring Boot based event-sourcing microservices.

The newest version!
package de.otto.synapse.message;

/**
 * Interface used to mark enums as keys for header-attributes.
 */
public interface HeaderAttr {
    String name();

    default String key() {
        return this.name();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy