>>
>
> I had a chat with Mike about what to do to improve this and we have a
> way that will help for now while we don't have a more comprehensive
> approach that works when we've support for distributed domains and
> clients remote from the nodes. I'll commit a strawman and post back
> here with details when thats in.
>
> ...ant
>
Just looking at ...
public class SCAClientImpl implements SCAClient {
....
public static void addDomain(URI domainName, Node node) {
nodes.put(domainName, node);
}
public static Node removeDomain(URI domainName) {
return nodes.remove(domainName);
}
Why wouldn't we create a client for a specified domain. What is the
scenario where we would want to add more than one?
Simon