Skip to content

Commit 6f1f9ca

Browse files
committed
refactoring
1 parent 90077c0 commit 6f1f9ca

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

implementations-line/framework/domain/src/main/java/org/cybnity/framework/domain/IReadModel.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212
* can subscribe to events on a write model. It's a component of the read side of
1313
* an application. Segregation elements of the CQRS pattern, this component is
1414
* responsible to expose readable different sets of classes to other systems
15-
* (e.g application user interface).
15+
* (e.g; application user interface).
1616
* <br>
1717
* Typically, return data item over Data Transfer Objects (DTO) via queries.
1818
* <br>
19-
* The implementation system (e.g database) is optimized for reads by being
19+
* The implementation system (e.g; database) is optimized for reads by being
2020
* denormalized to suit the specific queries that an application should support
2121
* on the read side.
2222
* <br>

implementations-line/framework/domain/src/main/java/org/cybnity/framework/domain/IReadModelProjection.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
import org.cybnity.framework.domain.model.ReadModelProjectionDescriptor;
66

77
/**
8-
* Represents an optimized read-model projection allowing query and read of denormalized version of domain layer object (e.g status and value of a domain object version at a moment of life).
8+
* Represents an optimized read-model projection allowing query and read of denormalized version of domain layer object (e.g; status and value of a domain object version at a moment of life).
99
* This interface contract is covering a perimeter of read-model projection based on a type of denormalized domain object view.
10-
* Each projection specialized for a domain layer (e.g aggregate view) shall extend this type of contract to add specific methods supporting optimized queries for the type of domain object view managed.
10+
* Each projection specialized for a domain layer (e.g; aggregate view) shall extend this type of contract to add specific methods supporting optimized queries for the type of domain object view managed.
1111
*/
1212
public interface IReadModelProjection {
1313

0 commit comments

Comments
 (0)