*/
public class CallAnnotationParser extends AbstractEndpointAnnotationParser
{
protected AnnotatedEndpointData createEndpointData(Annotation annotation) throws MuleException
{
Call call = (Call) annotation;
AnnotatedEndpointData epd = new AnnotatedEndpointData(MessageExchangePattern.REQUEST_RESPONSE, ChannelType.Outbound, call);
epd.setAddress(call.uri());
epd.setProperties(AnnotatedEndpointData.convert(call.properties()));
return epd;
}