Add a service to ParameterService
Hi, I would like to extend the set of services around the parameters that a Node actually provides.
So far the involved classes are the following:
- Node
- NodeParameters
- ParameterService
- NodeParameters
If I want to introduce a new parameter service, should I add it by inheriting ParameterServiceNew from ParameterService and then do something similar at each class of the list above?
Any suggestion on how to smartly add a new service with minimal impact on the aforementioned classes?
So far to me it sound I have to add it to the main classes involved...the above ones and their interfaces. Otherwise I could add the new methods to the interfaces and inherit the implementation classes.
Thanks