So I have a scenario where a value id
need to be passed between different objects but instantiation of each objects is in hierarchical order.
For example:
ObjA
- Gets and id from web service
Instantiate ObjB - (Obj A passes id to Obj B while instantiating)
- Obj B instantiates Obj C (Obj B passes id to Obj C while instantiating)
And it goes on to 5-6 level of message passing and hierarchical object instantiation.
But message passing between objects while instantiating seems redundant. So I am thinking would it be better if I make an singleton class and every objects access the same value in a singleton? Or is there better way?
Perhaps all your objects could extend a common interface. lets say
Now at the top most layer, you can create a List
Now when you get the ID, you can run (using this list will also maintain the order of setting Ids if that is important.
or you could use a stream to get it done in fewer lines of code.