io.jexxa.addend.applicationcore.Aggregate 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 java.lang.annotation.Documented;
import java.lang.annotation.Target;
/**
* Represents an aggregate or entity in terms of Domain Driven Design.
*
* Each aggregate has a {@link AggregateID} which is a Unique ID and an {@link AggregateFactory} which creates a new {@link Aggregate}.
*/
@Target(TYPE)
@Documented
public @interface Aggregate
{
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy