Examples of Providers


Examples of org.jboss.soa.esb.listeners.config.xbeanmodel130.ProvidersDocument.Providers

     * Get the <provider> configuration containing the supplied Bus configuration instance.
     * @param providerType The Bus Provider type is being sought.
     * @return The Provider configuration instance.
     */
    public Provider getProvider(Class<? extends BusProvider> providerType) {
        Providers providers = jbossesb.getProviders();

        if(providers != null) {
            List<Provider> providerList = providers.getProviderList();

            for(Provider provider : providerList) {
                if(providerType.isAssignableFrom(provider.getClass())) {
                    return provider;
                }
View Full Code Here

Examples of org.jboss.soa.esb.listeners.config.xbeanmodel130.ProvidersDocument.Providers

     * Verify the schedule provider configuration.
     * @throws org.jboss.soa.esb.ConfigurationException
     */
    public void verifyScheduleProviderConfig()
        throws ConfigurationException {
        Providers providersConfig = jbossesb.getProviders();

        if(providersConfig == null) {
            return;
        }

        List<Provider> providers = providersConfig.getProviderList();
        int numScheduleProviders = 0;

        for(Provider provider : providers) {
            if(provider instanceof ScheduleProvider) {
                numScheduleProviders++;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.