Skip to content

Latest commit

 

History

History
45 lines (24 loc) · 2.6 KB

File metadata and controls

45 lines (24 loc) · 2.6 KB
graph LR
    Metadata_Service_API_Gateway_Controller["Metadata Service API Gateway/Controller"]
    Metadata_Service_Core_Logic["Metadata Service Core Logic"]
    Metadata_Service_Data_Access_Layer["Metadata Service Data Access Layer"]
    Metadata_Service_API_Gateway_Controller -- "delegates to" --> Metadata_Service_Core_Logic
    Metadata_Service_Core_Logic -- "relies on" --> Metadata_Service_Data_Access_Layer
Loading

CodeBoardingDemoContact

Details

The Metadata Service acts as the centralized repository for all DDI 3.3 compliant metadata, providing services for defining, storing, and retrieving metadata elements, schemas, and controlled vocabularies. Within the context of a Complex Enterprise-Grade Data Management and Collection System, this service adheres to microservices architectural patterns by encapsulating its domain logic and data management.

Metadata Service API Gateway/Controller

This component serves as the external interface for the Metadata Service, handling incoming API requests related to DDI metadata. It is responsible for routing requests to the appropriate internal service logic and ensuring proper request/response formatting. It acts as the primary entry point for external interactions with the metadata capabilities.

Related Classes/Methods:

  • com.example.ddidesigner.DDIController (1:1)

Metadata Service Core Logic

Encapsulates the core business logic for defining, storing, retrieving, and managing DDI metadata elements, schemas, and vocabularies. This component orchestrates the operations required to fulfill metadata-related requests, applying business rules and interacting with the data persistence layer.

Related Classes/Methods:

  • com.example.ddidesigner.DDIService (1:1)

Metadata Service Data Access Layer

Manages the persistence layer for the Metadata Service, facilitating interactions with the underlying database(s) (e.g., PostgreSQL for structured data, MongoDB for flexible metadata) for DDI metadata storage and retrieval. It abstracts the database specifics from the core business logic.

Related Classes/Methods:

  • com.example.ddidesigner.DDIDatabaseConnector (1:1)