Package org.apache.synapse
Interface ManagedLifecycle
-
- All Known Subinterfaces:
Endpoint
,FilterMediator
,ListMediator
,MessageProcessor
,MessageStore
,Startup
- All Known Implementing Classes:
AbstractDBMediator
,AbstractEndpoint
,AbstractListMediator
,AbstractMessageProcessor
,AbstractMessageStore
,AbstractStartup
,AddressEndpoint
,AggregateMediator
,AnonymousListMediator
,API
,BasicAuthConfiguredHTTPEndpoint
,CallMediator
,CalloutMediator
,ClassEndpoint
,ClassMediator
,CloneMediator
,DBLookupMediator
,DBReportMediator
,DefaultEndpoint
,DynamicLoadbalanceEndpoint
,EJBMediator
,FailoverEndpoint
,FailoverForwardingService
,FailoverScheduledMessageForwardingProcessor
,FilterMediator
,ForEachMediator
,ForwardingService
,HTTPEndpoint
,InboundEndpoint
,IndirectEndpoint
,InMediator
,InMemoryStore
,InvokeMediator
,IterateMediator
,JDBCMessageStore
,JmsStore
,LoadbalanceEndpoint
,MessageInjector
,NTLMMediator
,OAuthConfiguredHTTPEndpoint
,OutMediator
,RabbitMQStore
,RecipientListEndpoint
,RegistryResourceFetcher
,ResequenceMessageStore
,ResolvingEndpoint
,Resource
,SALoadbalanceEndpoint
,SamplingProcessor
,SamplingService
,SamplingThrottleMediator
,ScheduledMessageForwardingProcessor
,ScheduledMessageProcessor
,SendMediator
,SequenceMediator
,ServiceDynamicLoadbalanceEndpoint
,StartUpController
,SwitchCase
,SwitchMediator
,SynapseConfiguration
,SynapseMediator
,TemplateEndpoint
,TemplateMediator
,TemplateMessageExecutor
,ValidateMediator
,WeightedRoundRobin
,WeightedRRLCAlgorithm
,WSDLEndpoint
public interface ManagedLifecycle
This interface defines all the managed stateful parts of Synapse including the configuration itself.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
destroy()
This method should implement the destroying of the implemented parts of the configuration.void
init(SynapseEnvironment se)
This method should implement the initialization of the implemented parts of the configuration.
-
-
-
Method Detail
-
init
void init(SynapseEnvironment se)
This method should implement the initialization of the implemented parts of the configuration.- Parameters:
se
- SynapseEnvironment to be used for initialization
-
destroy
void destroy()
This method should implement the destroying of the implemented parts of the configuration.
-
-