Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Won't Fix
-
1.14.0
-
None
Description
I see this as a hybrid of a contributed service and a mixin.
I quite like the idea of calling these "responsibilities", eg
@Responsibility public class Customer_orders { private final Customer customer; public List<Order> getOrders() { ... } public Customer addOrder(...) { ... } public Customer removeOrder(...) { ... } }