I am trying to refactor my code to make re-use existing code but wanted some suggestions as to how this should be done in the best possible way using REST resources (Jersey in this case).
I have a resource that deals with Domains. Such methods in this resource include getting a domain, getting multiple domains, and posting for bulk gets (too many to use a GET).
However, I also have a resouce that does the same for URLs. Except that what I do here is to extract the domains from the URL and effectively perform the same logic that I do with the DomainResource class as once I have the domain from the URL, I need to execute the exact same lookups. However instead of re-using the existing DomainResource methods, I am duplicating and calling the same methods in my URLResouce class.
So is it better to have duplication in this case and keep the resources separate, or is it possible (bad/good preactice) to call one resource from another, in the case, the URLResouce would delegate to the DomainResource? How does this sound?
