Tagged Questions
7
votes
2answers
393 views
DAO pattern and the Open-Closed Principle
I've seen and worked with a lot of older, JDBC-based DAO code that usually start out with CRUD methods. My question relates specifically to the retrieval methods, or 'finders'. Typically what I find ...
1
vote
1answer
84 views
Does an API based on inheritance violate OCP? Can this be solved with a provider model/dependency injection?
I'm designing an API for the first time, and trying to follow SOLID guidelines. One of the things I find myself struggling with is balancing OCP and testability with simplicity and ease of ...