org.mule.api.EndpointAnnotationParser Maven / Gradle / Ivy
/*
* Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com
* The software in this package is published under the terms of the CPAL v1.0
* license, a copy of which has been included with this distribution in the
* LICENSE.txt file.
*/
package org.mule.api;
import org.mule.api.endpoint.InboundEndpoint;
import org.mule.api.endpoint.OutboundEndpoint;
import java.lang.annotation.Annotation;
import java.lang.reflect.Member;
import java.util.Map;
/**
* An SPI interface that will process an Endpoint annotation. Note that the
* Annotation must be annotated with the @Endpoint
annotation.
*/
public interface EndpointAnnotationParser
{
/**
* Creates an outbound endpoint from the annotation.
*
* @param annotation the annotation to process
* @param metaInfo any additional info that can be used to construct the endpoint. Typically a connector name might be
* in this map so that all endpoints for the current object can share the same connector
* @return a new {@link org.mule.api.endpoint.OutboundEndpoint} object configured according to the annotation
* @throws MuleException if the outbound endpoint cannot be created. A Mule-specific error will be thrown.
*/
public OutboundEndpoint parseOutboundEndpoint(Annotation annotation, Map metaInfo) throws MuleException;
/**
* Creates an inbound endpoint from the annotation.
*
* @param annotation the annotation to process
* @param metaInfo any additional info that can be used to construct the endpoint. Typically a connector name might be
* in this map so that all endpoints for the current object can share the same connector
* @return a new {@link org.mule.api.endpoint.InboundEndpoint} object configured according to the annotation
* @throws MuleException if the inbound endpoint cannot be created. A Mule-specific error will be thrown.
*/
public InboundEndpoint parseInboundEndpoint(Annotation annotation, Map metaInfo) throws MuleException;
/**
* Determines whether this parser can process the current annotation. The clazz and member params are passed in
* so that further validation be done on the location, type or name of these elements.
*
* @param annotation the annotation being processed
* @param clazz the class on which the annotation was found
* @param member the member on which the annotation was found inside the class. This is only set when the annotation
* was either set on a {@link java.lang.reflect.Method}, {@link java.lang.reflect.Field} or {@link java.lang.reflect.Constructor}
* class member, otherwise this value is null.
* @return true if this parser supports the current annotation, false otherwise
*/
public boolean supports(Annotation annotation, Class clazz, Member member);
}