| 60 | } |
| 61 | |
| 62 | class Service { |
| 63 | String name; |
| 64 | Set<Destination> destinations; |
| 65 | |
| 66 | public void addDestination(Destination destination){ |
| 67 | destinations.add(destination); |
| 68 | } |
| 69 | |
| 70 | public void removeDestination(Destination destination){ |
| 71 | destinations.remove(destination); |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | class Request { |
| 76 | String id; |
nothing calls this directly
no outgoing calls
no test coverage detected