io.jexxa.addend.infrastructure.DrivingAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Addend Show documentation
Show all versions of Addend Show documentation
Addend - Annotations for Domain Driven Design
package io.jexxa.addend.infrastructure;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
/**
* A {@link DrivingAdapter} drives an application core by receiving commands via a specific protocol such as REST or JMS.
* A {@link DrivingAdapter} can use available inbound ports provided by the application core to execute commands or
* a {{@link io.jexxa.addend.applicationcore.DomainEvent} and 'drive' the application.
*/
@Target(TYPE)
@Retention(RUNTIME)
@Documented
public @interface DrivingAdapter
{
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy