There are three types of classes:
- Handler
- Service
- DAO
A handler handles an incoming command an calls a services. The services does caching and calls other services or a DAO. Services and DAOs are singletons.
Is there a way to create a custom warning if a DAO is used in one of the handlers?