io.jexxa.addend.applicationcore.ApplicationService 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.applicationcore;
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;
/**
* Represents an {@link ApplicationService} in terms of Domain Driven Design.
*
* In terms of a hexagonal architecture an ApplicationService also represents an inbound port which provides methods
* that can be used by a {@link io.jexxa.addend.infrastructure.DrivingAdapter}.
*
*/
@Target(TYPE)
@Retention(RUNTIME)
@Documented
public @interface ApplicationService
{
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy