This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* <p> | |
* A DDD aggregate is a cluster of domain objects that is treated as a | |
* single unit to ensure consistency across them. | |
* </p> | |
* | |
* @see <a href= "https://martinfowler.com/bliki/DDD_Aggregate.html"> | |
* Aggregates in Domain Driven Design | |
* </a> | |
*/ | |
public @interface Aggregate { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment