protected Endpoint createEndpoint(String uri, String remaining, Map parameters) throws Exception {
Object bean = getBean(remaining);
BeanProcessor processor = new BeanProcessor(bean, getParameterMappingStrategy());
IntrospectionSupport.setProperties(processor, parameters);
return new ProcessorEndpoint(uri, this, processor);
}