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

io.jexxa.addend.applicationcore.Aggregate Maven / Gradle / Ivy

There is a newer version: 2.0.2
Show newest version
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