Class AbstractApiComponent<E extends Enum<E> & ApiName,T,S extends ApiCollection<E,T>>
- java.lang.Object
-
- org.apache.camel.support.service.BaseService
-
- org.apache.camel.support.service.ServiceSupport
-
- org.apache.camel.support.DefaultComponent
-
- org.apache.camel.support.component.AbstractApiComponent<E,T,S>
-
- All Implemented Interfaces:
AutoCloseable,org.apache.camel.CamelContextAware,org.apache.camel.Component,org.apache.camel.Service,org.apache.camel.ShutdownableService,org.apache.camel.StatefulService,org.apache.camel.SuspendableService
public abstract class AbstractApiComponent<E extends Enum<E> & ApiName,T,S extends ApiCollection<E,T>> extends DefaultComponent
Abstract base class for API Component CamelComponentclasses.
-
-
Field Summary
Fields Modifier and Type Field Description protected Class<E>apiNameClassprotected Scollectionprotected Tconfiguration
-
Constructor Summary
Constructors Constructor Description AbstractApiComponent(Class<? extends org.apache.camel.Endpoint> endpointClass, Class<E> apiNameClass, S collection)AbstractApiComponent(org.apache.camel.CamelContext context, Class<? extends org.apache.camel.Endpoint> endpointClass, Class<E> apiNameClass, S collection)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected abstract org.apache.camel.EndpointcreateEndpoint(String uri, String methodName, E apiName, T endpointConfiguration)protected org.apache.camel.EndpointcreateEndpoint(String uri, String remaining, Map<String,Object> parameters)A factory method allowing derived components to create a new endpoint from the given URI, remaining path and optional parametersprotected TcreateEndpointConfiguration(E name)protected abstract EgetApiName(String apiNameStr)TgetConfiguration()voidsetConfiguration(T configuration)-
Methods inherited from class org.apache.camel.support.DefaultComponent
afterConfiguration, createEndpoint, createEndpoint, doBuild, doStart, doStop, getAndRemoveOrResolveReferenceParameter, getAndRemoveOrResolveReferenceParameter, getAndRemoveParameter, getAndRemoveParameter, getCamelContext, getComponentPropertyConfigurer, getEndpointPropertyConfigurer, getExtension, getSupportedExtensions, ifStartsWithReturnRemainder, isBasicPropertyBinding, isBridgeErrorHandler, isLazyStartProducer, registerExtension, registerExtension, resolveAndRemoveReferenceListParameter, resolveAndRemoveReferenceListParameter, resolveAndRemoveReferenceParameter, resolveAndRemoveReferenceParameter, setBasicPropertyBinding, setBridgeErrorHandler, setCamelContext, setLazyStartProducer, setProperties, setProperties, setProperties, useIntrospectionOnEndpoint, useRawUri, validateParameters, validateURI
-
Methods inherited from class org.apache.camel.support.service.BaseService
build, doFail, doInit, doLifecycleChange, doResume, doShutdown, doSuspend, fail, getStatus, init, isBuild, isInit, isNew, isRunAllowed, isShutdown, isStarted, isStarting, isStartingOrStarted, isStopped, isStopping, isStoppingOrStopped, isSuspended, isSuspending, isSuspendingOrSuspended, resume, shutdown, start, stop, suspend
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
Method Detail
-
createEndpoint
protected org.apache.camel.Endpoint createEndpoint(String uri, String remaining, Map<String,Object> parameters) throws Exception
Description copied from class:DefaultComponentA factory method allowing derived components to create a new endpoint from the given URI, remaining path and optional parameters- Specified by:
createEndpointin classDefaultComponent- Parameters:
uri- the full URI of the endpointremaining- the remaining part of the URI without the query parameters or component prefixparameters- the optional parameters passed in- Returns:
- a newly created endpoint or null if the endpoint cannot be created based on the inputs
- Throws:
Exception- is thrown if error creating the endpoint
-
getApiName
protected abstract E getApiName(String apiNameStr) throws IllegalArgumentException
- Throws:
IllegalArgumentException
-
createEndpoint
protected abstract org.apache.camel.Endpoint createEndpoint(String uri, String methodName, E apiName, T endpointConfiguration)
-
createEndpointConfiguration
protected T createEndpointConfiguration(E name) throws Exception
- Throws:
Exception
-
getConfiguration
public T getConfiguration()
-
setConfiguration
public void setConfiguration(T configuration)
-
-