I seem to be missing something in the documentation and examples I'm reading. I'm in the process of making some of our private API calls into public API calls and would also like to make a easy to use java library to access the api. I'm using Spring 3 Restful web services and would like to do something like this in the end...
APIService service1 = new APIService("joe's api key");
List joesThings = service1.getThings(); // only returns joe's things.
asertTrue( joesThings.size() == 4, "Joe should have 4 things" );
APIService service2 = new APIService("bob's api key");
List bobsThings = service2.getThings(); // only returns bob's things.
asertTrue( bobsThings.size() == 5, "Bob should have 5 things" );
My question is what is the best practice on handling where to inject the API key.