* Returns the Spring Bean which implements a particular service
* @param service the service
* @return the bean which implements the service, as a SpringBeanElement
*/
public SpringBeanElement getBeanFromService( Service service ) {
SpringBeanElement theBean = serviceMap.get( service.getName() );
return theBean;
}