-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
645 additions
and
18 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,47 @@ | ||
/** | ||
* CIA (Citizen Intelligence Agency) Common Model API Module. | ||
* | ||
* <p>This module defines the core model interfaces and common data structures used | ||
* throughout the CIA application. It provides the foundational API for all model | ||
* implementations across the system.</p> | ||
* | ||
* <p>The module exports a single package:</p> | ||
* <ul> | ||
* <li>{@code com.hack23.cia.model.common.api} - Core model interfaces and common data structures</li> | ||
* </ul> | ||
* | ||
* <p>Key Components:</p> | ||
* <ul> | ||
* <li>Base Model Interfaces | ||
* <ul> | ||
* <li>Entity definitions</li> | ||
* <li>Data transfer objects</li> | ||
* <li>Common model patterns</li> | ||
* </ul> | ||
* </li> | ||
* <li>Shared Data Types | ||
* <ul> | ||
* <li>Common enumerations</li> | ||
* <li>Base value objects</li> | ||
* <li>Shared constants</li> | ||
* </ul> | ||
* </li> | ||
* </ul> | ||
* | ||
* <p>This module serves as the foundation for all model implementations in the CIA | ||
* application, ensuring consistency across:</p> | ||
* <ul> | ||
* <li>Political data models</li> | ||
* <li>Financial metrics</li> | ||
* <li>Institution profiles</li> | ||
* <li>Performance indicators</li> | ||
* </ul> | ||
* | ||
* <p>The API is designed to be minimal yet extensible, providing only the essential | ||
* interfaces needed for model implementations while maintaining flexibility for | ||
* different data types and sources.</p> | ||
* | ||
*/ | ||
open module com.hack23.model.common.api { | ||
exports com.hack23.cia.model.common.api; | ||
} |
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
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
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
27 changes: 27 additions & 0 deletions
27
service.component.agent.api/src/main/java/module-info.java
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
53 changes: 53 additions & 0 deletions
53
service.component.agent.impl/src/main/java/module-info.java
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
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
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
Oops, something went wrong.