Difference between revisions of "Implementing Domain Driven Architecture with OSGi"

From Opentaps Wiki
Jump to navigationJump to search
(New page: Domain classes are the '''nouns''': a Person, a Product, an Order. Services are '''verbs''': CreateOrder, UpdateProduct. They create or modify the domain classes. Services should be use...)
 
m (Protected "Implementing Domain Driven Architecture with OSGi": Sysop page [edit=sysop:move=sysop])
(No difference)

Revision as of 17:41, 1 March 2012

Domain classes are the nouns: a Person, a Product, an Order.

Services are verbs: CreateOrder, UpdateProduct. They create or modify the domain classes. Services should be used as first class objects and passed around to perform these actions.