I need to retrieve a list of given entities (apples) from another resource (fruitDelaer) I know I can do smt like this (somewhere in my fruitDealer resource implementation):
ClientResource applesResource = new ClientResource("http://localhost:8888/fruitShop/apples");
Representation response = applesResource.get();
But since this 'apples' resource is local to the one it's invoking it, is there a way not to specify the full url?
NOTE: I suspect this may have more to do with Java itself than restlet
