}
}
protected void search(String name, String location)
throws MalformedURLException, FeedServerClientException {
GoogleService service = new GoogleService("esp", getClass().getName());
FeedServerClient<Employee> client = new FeedServerClient<Employee>(service, Employee.class);
URL feedUrl = new URL("http://localhost:8080/resource/employee");
List<Employee> employees = client.getEntities(feedUrl);
for (Employee e: employees) {
System.out.println(e.getId() + ": " + e.getFirstName() + " " + e.getLastName());