Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop #12

Merged
merged 2 commits into from
Aug 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,13 @@ Application to create appointments (REST API). Appointments are stored in a rela
* SDKMAN (optional, recommended)

## 📖 Terms
* **Port:** interface to set a boundary among application logic and implementation details.
* **Adapter:**: port implementation to bridge the application's domain with the tools used in
the system.
* **Domain:**: application logic and
* **Service:**
* **UseCase/Case:**
* **Input/Driver Adapter:**
* **Output/Driven Adapter:**
* **Port:** interface to set a boundary between application logic and implementation details.
* **Adapter:**: port implementation to connect the application domain with the system's context.
* **Domain:**: application logic and model entities.
* **Service:**: implement operations with a common topic altogether. Usually calls driven ports.
* **UseCase/Case:**: single operation service (isolate features). They can coexist with services.
* **Output/Driven Adapter:**: implementation of ports called from the domain.
* **Input/Driver Adapter:**: commands that call application logic (don't require a port).

## 🤔 Design Decisions
* Minimal: don't use libraries to implement easy stuff (even if that's boring).
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
</parent>

<artifactId>appointments</artifactId>
<version>0.2.0</version>
<version>0.3.0</version>

<name>Appointments</name>
<description>Application to create appointments (REST API)</description>
Expand Down